/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f5f5f5;
}
html, body {
    /* height: 100%; */
    background-image: url('images/Page_BG.png');
    height: 100vh;
    width: 100vw;
    background-size: cover;
    /* position: ; */
    top: 0;
    left: 0;
}

/* .background {
    background-image: url('images/v1_5.png');
    height: 100vh;
    width: 100vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
} */

.container {
    width: 100%;
    
    /* max-width: 1200px; */
    margin: 22px auto;
    padding: 0 20px;
}


.container-head{
    width: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    background: white; 
    z-index: 1000;
}
a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Styles */
.header {
    background-color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;

}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    
}

.logo img {
    height: 65px;
    margin-right: 10px;
    color: orange;
    margin-left: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #0047AB;
}

/* .main-nav ul {
    display: flex;
    
    gap: 30px;
}

.main-nav a {
    color: #0047AB;
    font-weight: 500;
    transition: color 0.3s;
    align-self: flex-end;
}

.main-nav a:hover {
    color: #FF7F50;
} */
 
.main-nav a:hover {
    color: #FF7F50;
}

.search-icon {
    color: #0047AB;
    cursor: pointer;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    position: relative;
}



.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


.nav-links {
    display: flex;
    gap: 30px;
    color: #012F9D;
}

/*!* Hide menu by default *!*/
/*#nav-menu {*/
/*    display: none;*/
/*    position: absolute;*/
/*    top: 50px;*/
/*    right: 0;*/
/*    background: white;*/
/*    border: 1px solid #ddd;*/
/*    padding: 10px;*/
/*    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/
/*}*/

/*!* Show menu when active *!*/
/*#nav-menu.active {*/
/*    display: block;*/
/*}*/

/*!* Style the menu icon *!*/
/*#menu-icon {*/
/*    cursor: pointer;*/
/*    font-size: 24px;*/
/*    display: block;*/
/*}*/


@media (max-width: 768px) {
    /*.menu-checkbox:checked ~ .nav-links {*/
    /*    display: flex;*/
    /*}*/

    /* Show menu when active */
    /*#nav-menu.active {*/
    /*    display: block;*/
    /*}*/

    /*!* Style the menu icon *!*/
    /*#menu-icon {*/
    /*    cursor: pointer;*/
    /*    font-size: 24px;*/
    /*    display: block;*/
    /*}*/

    /*--------------------*/
    /* General Styling */
    .main-nav {
        position: relative;
    }

    /* Hamburger Menu */
    .menu-toggle {
        font-size: 30px;
        cursor: pointer;
        display: block;
        color: #FF7F50;
        padding: 10px;
        user-select: none;
    }

    /* Nav Menu (Hidden Initially) */
    #nav-menu {
        display: none; /* Hide by default */
        position: absolute;
        top: 50px;
        right: 0;
        background: white;
        border-radius: 5px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        width: 200px;
        padding: 10px 0;
    }

    /* Show Nav Menu when Active */
    #nav-menu.active {
        display: block;
    }

    /* Navigation Links */
    .nav-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column; /* Ensures vertical layout */
    }

    .nav-links li {
        display: block; /* Ensure full width */
        padding: 10px 20px;
        width: 100%; /* Take full menu width */
    }

    .nav-links li a {
        text-decoration: none;
        display: block;
        color: #012F9D;
        width: 100%; /* Make link fill the whole area */
    }

    /*.nav-links li:hover {*/
    /*    background-color: #FF7F50;*/
    /*}*/
}




/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    width: 100%;
    background: url("images/Hero_Banner.png");
    /* object-fit: contain; */
    color: white;
    overflow: hidden;
    /* opacity: 0.6767039895057678; */
}

@media (max-width: 2560px) {
    .hero {
        height: 700px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        /* background-attachment: fixed; */
    }
}

@media (max-width: 768px) and (min-width: 425px) {
    .hero {
        height: 500px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        /* background-attachment: fixed; */
    }
}

@media (max-width: 993px) and (min-width: 755px) {
    .hero {
        height: 570px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        /* background-attachment: fixed; */
    }
}

@media (max-width: 575px){
    .hero {
        height: 365px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        /* background-attachment: fixed; */
    }
}

/* @media (max-width: 576px) {
    .hero {
        height: 350px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
} */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.9) 0%, rgba(0, 71, 171, 0.7) 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero-background-placeholder.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.hero-circles {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url('circles-overlay-placeholder.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 2;
    opacity: 0.7;
}



.hero-content {
   position: relative;
   width: 100%;
   height: 100%;
   top:250px;
  
   /* right: -400px; */
   /* width: 100%; */
   /* border: 3px solid #73AD21; */
  }
  .hero-sub {
    position: absolute;
   
   width: 100%;
   height: 100%;
   z-index: 1;
   /* border: 3px solid #73AD21; */
  }

  @media (max-width: 992px) {
    .hero-content {
        top: 200px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        top: 150px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        top: 30px;
        text-align: center;
    }

    .hero-sub {
        height: auto;
    }
}


.hero h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
}

.hero h2 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
}

.highlight {
    color: #FF7F50;
}

/* Card Styles */
.about-card, .platform-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin: 40px 0;
}

/* About Section */
/*.about-section {*/
/*    padding: 40px 0;*/
/*}*/

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #0047AB;
    margin-bottom: 20px;
}

.about-card p {
    margin-bottom: 15px;
}

.products-overview {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.product {
    flex: 1;
}

.product-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.product-logo img {
    height: 30px;
    margin-right: 10px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: #0047AB;
}

.know-more {
    display: inline-block;
    color: #FF7F50;
    font-weight: 500;
    margin-top: 10px;
}

/* Platform Sections */
/*.platform-section {*/
/*    padding: 20px 0;*/
/*}*/

.platform-card {
    display: flex;
    gap: 40px;
}

.platform-info {
    flex: 1;
}

.platform-image {
    flex: 1;
    position: relative;
}

.platform-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.visit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #3B5998;
    color: white;
    text-align: center;
    padding: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.pixerpost-illustration {
    margin-bottom: 20px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-list {
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.arrow {
    color: #FF7F50;
    margin-right: 10px;
    font-weight: bold;
}

.see-how {
    font-weight: 600;
    margin: 20px 0;
    color: #012F9D;
}

.schedule-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: white;
    color: #FF7F50;
    border: 1px solid #0047AB;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s;
}

.schedule-btn:hover {
    background-color: #FF7F50;
    color: white;
}
@media (max-width: 992px) {
    .schedule-btn {
        padding: 14px 20px; /* Slightly larger padding for tablets */
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .schedule-btn {
        display: block; /* Makes button full-width */
        width: 100%;
        text-align: center;
        padding: 14px 0;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .schedule-btn {
        font-size: 14px;
        padding: 12px 0;
    }
}


/* Contact Section */
/*.contact-section {*/
/*    padding: 40px 0;*/
/*}*/

.contact-container {
    display: flex;
    gap: 40px;
}

.contact-form-container {
    flex: 1;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
}
.contact-info-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    text-align: center;
    flex: 1;
    background-color: white;
    background-image: url("images/Contact_Background.png");
    background-size: 60%; /* Adjusts the background image size */
    background-position: center center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents repetition */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    max-height: 1000px;
    min-height: 300px;
    position: relative;
    width: 100%;
}

.contact-form {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Space between columns */
}

.form-group {
    width: 48%; /* Set width to roughly half */
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #012F9D;
    border-radius: 5px;
    font-size: 16px;
}

/* Ensure the submit button takes full width */
/*.form-group:last-child {*/
/*    width: 100%;*/
/*    text-align: right;*/
/*}*/

.submit-btn {
    width: 100%;
    background-color: #FF7F50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #FF6347;
}

.contact-info h3 {
    color: #0047AB;
    /* margin-top: 20px; */
    margin-bottom: 10px; 
}




.email-link {
    color: #FF7F50;
}

.dots-background {
    /* position: center; */
    position: relative;
    top:100px;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Contact_Background.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
    margin-bottom: 50px;
}
.contact-info{
    position: absolute;
    z-index: 2;
    width: 100%;  /* Ensure it takes full width */
    height: 100%; /* Ensure it takes full height */
    overflow: hidden; /* Prevents overflow */
}

.contact-info img{
    width: 91%;
    height: 82%;
    object-fit: cover; /* Ensures the whole image fits inside */
}

/* Footer */
.footer {
    background-color: #f0f0f0;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: #012F9D;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #FF7F50;
}

.privacy-policy a {
    color: #FF7F50;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .products-overview {
        flex-direction: column;
    }
    
    .platform-card {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .hero h1, .hero h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav ul {
        gap: 15px;
    }
    
    .hero-content {
        padding: 60px 0;
        position: relative;
        z-index: 3;
        height: 100%;
        text-align: center; 
        /* align-items: center; */
        
    }
    
    .hero h1, .hero h2 {
        font-size: 20px;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .about-card, .platform-card, .contact-form-container, .contact-info-container {
        padding: 20px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 426px) {
    .contact-info img{
        width: 91%;
        height: 60%;
        object-fit: cover; /* Ensures the whole image fits inside */
    }
}

/*--------------------------------------*/

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Adjust spacing */
    margin-bottom: 10px;
}

.annotet_logo {
    height: 40px; /* Adjust as needed */
}

.divider {
    height: 50px; /* Adjust as needed */
    width: 30px;
    /*filter: drop-shadow(0 0 2px black); !* Adds a shadow to make it look bolder *!*/
    /*background-color: rgba(48, 46, 46, 0.75); !* Ensure visibility *!*/
}

.contact-text p {
    margin: 5px 0;
    font-size: 16px;
    color: #FF7F50;
    text-align: center;
}

.contact-text span {
    color: #012F9D;
    font-weight: bold;
}

.email {
    color: #FF7F50;
    font-weight: bold;
    font-size: 18px;
}

/* Mobile view */
@media (max-width: 576px) {
    .logo-wrapper {
        flex-direction: column; /* Stack images vertically */
    }

    .annotet_logo {
        width: 135px; /* Adjust for mobile */
        height: auto;
    }

    .divider {
        display: none; /* Hide the vertical line */
    }

    .contact-text {
        font-size: 14px;
    }
}