@import url('https://fonts.googleapis.com/css2?family=Baskervville+SC&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lexend:wght@100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

/* CSS for the image section */


/* CSS for the image section */


/* CSS for the image section */

.image-section {
    position: relative;
    width: 100%;
    height: 400px;
    /* Adjust height as needed */
    background-image: url('1.jpg');
    /* Replace 'your-image-url.jpg' with the path to your image */
    background-size:cover;
    background-position: center;
}   
.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 0 20px;
    /* Added padding */
}

.image-overlay h2 {
    font-size: 24px;
    /* Adjust font size for smaller screens */
    margin-bottom: 20px;
}

.book-appointment-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.book-appointment-btn:hover {
    background-color: #004080;
    /* Darker shade for hover */
}


/* Media Query for Tablets and Smaller Desktops */

@media only screen and (max-width: 992px) {
    .navbar a{
        padding: 3px 3px;
    }
    .image-overlay {
        position: relative;
    }
    .image-overlay h2 {
        font-size: 20px;
        /* Adjust font size for smaller screens */
    }
}


/* Media Query for Mobile Devices */


/* Media Query for Mobile Devices */

@media only screen and (max-width: 462px) {
    .image-section {
        height: 300px;
        /* Adjust height for smaller screens */
    }
    .image-overlay {
        padding: 0 10px;
        /* Adjust padding for smaller screens */
    }
    .image-overlay h2 {
        font-size: 18px;
        /* Adjust font size for smaller screens */
    }
    .book-appointment-btn {
        font-size: 14px;
        /* Adjust font size for smaller screens */
        padding: 10px 20px;
        /* Adjust button padding for smaller screens */
    }
}

/* Disclaimer Styling */
  .disclaimer-box {
    margin-top: 25px;
    background: #f9fafc;
    border-left: 4px solid #C5A86E;
    border-radius: 6px;
    padding: 15px 20px;
    font-size: 14px;
    color: #444;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .disclaimer-box p {
    margin: 0;
  }
/* CSS for the second div */

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    /* Adjust margin as needed */
}

.container .fade-in {
    display: flex;
    flex-direction: column;
}

.container .fade-in .left {
    order: 1;
    margin-right: 10px;
    /* Adjust margin-right for spacing between image and text */
}

.container .fade-in .right {
    order: 2;
    margin-left: 10px;
    /* Adjust margin-left for spacing between image and text */
}

.fade-in-left {
    animation: fade-in-left 1s ease;
}

.fade-in-right {
    animation: fade-in-right 1s ease;
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Media Query for Mobile Devices */

@media only screen and (max-width: 462px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    .container .fade-in .left,
    .container .fade-in .right {
        margin: 0;
        text-align: center;
    }
    .fade-in-left,
    .fade-in-right {
        animation: none;
        width: 100%;
        /* Remove animation on mobile */
    }
    .fade-in-right {
        font-size: 16px;
        border: 1px solid black;
        border-radius: 3px;
        /* Adjust font size for smaller screens */
    }
    .fade-in-left img {
        width: 100%;
        /* Make image full width on mobile */
        max-width: 300px;
        /* Limit image size on mobile */
    }
}



/* Media Query for Desktop */

@media only screen and (min-width: 601px) {
    .container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 50px;
        /* Adjust margin as needed */
    }
    .container .fade-in {
        display: flex;
        flex-direction: row;
    }
    .container .fade-in .left {
        width: 30%;
        /* Set width for the image */
        text-align: center;
        /* Center image horizontally */
    }
    .container .fade-in .right {
        width: 70%;
        /* Set width for the text */
        text-align: left;
        /* Align text to the left */
    }
}

.wrapper {
    display: flex;
}

.wrapper ul {
    list-style: none;
    /* Remove default list styles */
    padding: 0;
    margin: 50px;
    background-color: #f0f0f0;
}

.wrapper ul li {
    margin-bottom: 5px;
    position: relative;
    /* Position relative to create a reference for ::before pseudo-element */
}

.wrapper ul li a {
    text-decoration: none;
    color: #333;
}


/* Style the symbols for list items */

.wrapper ul li::before {
    content: '\27A1';
    /* Unicode for bullet (•) */
    position: absolute;
    /* Position the symbol absolutely */
    left: -20px;
    bottom: 10px;
    /* Adjust the position of the symbol */
    color: #333;
    /* Set the color of the symbol */
}

.fourth-div {
    padding: 20px;
}

.fourth-div>div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 20px;
}

.box {
    flex: 1;
    text-align: center;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.box img {
    max-width: 100%;
    border-radius: 8px;
}

@media only screen and (max-width: 768px) {
    .fourth-div>div {
        flex-direction: column;
    }
}

/* Flex container for each row */

.fourth-div>div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}


/* Styling for each box */

.fourth-div>div>div {
    flex: 1;
    padding: 20px;
    /* Add padding */
    border: 1px solid black;
    /* Add border */
    border-radius: 8px;
    /* Add border radius */
    text-align: center;
    /* Center text */
}


/* Adjustments for mobile view */

@media only screen and (max-width: 768px) {
    .fourth-div>div {
        flex-direction: column;
        /* Stack boxes vertically */
    }
    .fourth-div>div>div {
        margin-bottom: 20px;
        /* Add space between boxes */
    }
}

.immgration {
    display: flex;
    flex-direction: column;
    /* Stack boxes vertically by default */
}

.immgration>div {
    flex: 1;
    padding: 20px;
    border: 1px solid black;
    /* Add border */
    border-radius: 8px;
    /* Add border radius */
    margin-bottom: 20px;
    /* Add spacing between boxes */
    text-align: center;
    /* Center text */
}


/* Adjust layout for desktop view */

@media only screen and (min-width: 768px) {
    .immgration {
        flex-direction: row;
        /* Display boxes horizontally */
    }
    .immgration>div {
        margin-right: 20px;
        /* Add spacing between boxes */
        margin-bottom: 0;
        /* Remove vertical margin */
    }
    /* Ensure last box doesn't have right margin */
    .immgration>div:last-child {
        margin-right: 0;
    }
}


/* Styles for the container of the sections */

.images-all {
    padding: 20px;
}


/* Styles for each section */

.images-all>div {
    flex: 1;
    text-align: center;
}


/* Styles for each image container */

.images-all>div>div.setup {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    /* Limit max-width for better alignment */
}


/* Styles for each image */

.images-all>div>div.setup img {
    width: 100%;
    max-width: 100%;
    /* Ensure image fits within its container */
    border-radius: 8px;
}


/* Styles for each text container */

.images-all>div>div>div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}


/* Styles for buttons */

.images-all>div>div>div button {
    background-color: #232B65;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
}


/* Adjust layout for mobile view */

@media only screen and (max-width: 768px) {
    .images-all>div {
        flex-direction: column;
        /* Stack sections vertically */
    }
    .images-all>div>div {
        margin: 30px;
        /* Add spacing between items */
    }
}


/* Styles for the contact box */


/* Base styles for the contact box */

.contactbox {
    background-color: #60697b;
    color: white;
    padding: 20px;
    text-align: center;
}


/* Styles for the heading */

.contactbox h1 {
    margin: 0;
}


/* Styles for the button */

.contactbox .book-appointment-btn {
    background-color: #232B65;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-left: 45%;
    /* Adjust margin top */
}


/* Styles for the button link */

.contactbox .book-appointment-btn a {
    color: white;
    text-decoration: none;
}


/* Styles for the button hover effect */

.contactbox .book-appointment-btn:hover {
    background-color: #1C2251;
}


/* Media query for mobile view */

@media only screen and (max-width: 768px) {
    /* Override button positioning */
    .contactbox .book-appointment-btn {
        margin: 0 auto;
        /* Center the button horizontally */
        display: block;
        /* Change button to block element */
    }
}


/* Base styles for the footer */


/* Base styles for the footer */

footer {
    background-color: #f2f2f2;
    padding: 20px;
    text-align: center;
}


/* Styles for the footer content */

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 600px;
    /* Adjust as needed */
    margin: 0 auto;
}


/* Styles for the heading */

.footer-content h3 {
    margin-bottom: 10px;
}


/* Styles for the list items */

.footer-content ul {
    list-style-type: none;
    padding: 0;
}


/* Styles for list items */

.footer-content ul li {
    margin-bottom: 5px;
}


/* Styles for links */

.footer-content a {
    color: #007bff;
    text-decoration: none;
}


/* Styles for social icons */

.social-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
}


/* Styles for social icons */

.boximg {
    transition: transform 0.3s ease;
}

.zoomin:hover~.boximg {
    transform: scale(1.3);
}
.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.about-section .right {
  flex: 1;
  max-width: 600px;
}

.about-section h2 {
  font-size: 26px;
  color: #232B65;
  margin-bottom: 15px;
}

.arrow-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.arrow-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* LOGO + ANIMATED BOX */
.logo-container {
  position: relative;
  display: inline-flex;       /* sits nicely inside navbar flex */
  align-items: center;
  gap: 0;                     /* no extra gap inside logo */
}

.logo-container img{
    height: 120px;
}



/* subtle breathing / glow effect */
@keyframes logoPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 45, 65, 0.8);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(20, 45, 65, 0);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(20, 45, 65, 0);
    transform: scale(1);
  }
}


.logo-text {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;

    font-size: 48px !important;
    font-weight: 700;
    font-family: "Dancing Script", cursive;
    letter-spacing: 2px;

    color: #CCAD77 !important;
    text-decoration: none;

    /* Simple but premium enhancement */
    border-radius: 12px;                    /* smooth pill */
    
    transition: 0.25s ease;
    padding: 0 !important;
}

.logo-text:hover {
    background: none !important;
    box-shadow: none !important;
}
.logo-text img{
    height: 50px !important;
}
.logo-number {
    font-size: 52px;
    padding: 0 2px;
    color: #CCAD77;
}


.logo-number {
  font-size: 60px;         
  padding: 0 2px;
  color: #CCAD77;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.select-country{
    text-decoration: dashed;
}

/* OTHER VISAS mega menu laid out like a table */
.third-navbar .dropdown-content {
    max-width: 100vw;
}

/* Use a grid instead of flex */
.third-navbar .dropdown-content .wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr)); /* 3 equal columns */
    gap: 24px 40px;                                      /* row / column gaps */
    padding: 20px;
    box-sizing: border-box;
}

/* Each <ul> = one cell in the grid */
.third-navbar .dropdown-content .wrapper ul {
    margin: 0 !important;      /* override old margin:50px; */
    padding: 12px 18px;
    background-color: #f5f5f5; /* optional: same box style for all */
    list-style: none;
}

/* Mobile: stack columns */
@media (max-width: 900px) {
    .third-navbar .dropdown-content .wrapper {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 600px) {
    .third-navbar .dropdown-content .wrapper {
        grid-template-columns: 1fr;
    }
}

.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar .logo-container {
    flex: 0 0 auto;   /* stays its natural width */
}

.navbar .middle-image {
    flex: 1;                       /* expands to fill empty space */
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 250px;
    height: 135px !important;
    position: relative;
    top: -10px;              /* prevents collapsing */
}


.navbar .middle-image img {
    height: 120px;                  /* ← YOUR requirement */
    width: auto;                   /* maintain aspect ratio */
    max-width: 100%;               /* allow stretching */
    object-fit: contain;           /* never distort */
    display: block;
}


.navbar .social-icons {
    flex: 0 0 auto;   /* stay fixed on the right */
    display: flex;
    gap: 10px;
}
/* FORCE glow to work even inside dropdown */
.select-country {
    position: relative !important;
    z-index: 999 !important;

    border-radius: 8px;
    padding: 12px 20px !important;

    background: white !important;
    border: 2px solid #CCAF77 !important;

    animation: glowPulse 1.6s infinite ease-in-out !important;
}
.nav-email{
    animation: glowPulse 1.6s infinite ease-in-out !important;
}


/* Continuous glowing animation */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 0px rgba(204, 175, 119, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(204, 175, 119, 0.85);
        transform: scale(1.035);
    }
    100% {
        box-shadow: 0 0 0px rgba(204, 175, 119, 0.1);
        transform: scale(1);
    }
}

/* Hover override (optional but premium) */
.dropdown:hover .select-country {
    box-shadow: 0 0 18px rgba(204,175,119,1) !important;
    background: #fff7e3 !important;
}
@media (max-width: 600px) {
    .navbar{
        justify-content: center;
    }
}



/* Base styles for the footer */

footer {
    background-color: #f2f2f2;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap;
}


/* Styles for the footer content */

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 600px;
    /* Adjust as needed */
    margin: 0 auto;
    align-items: center;
}


/* Styles for the heading */

.footer-content h3 {
    margin-bottom: 10px;
}


/* Styles for the list items */

.footer-content ul {
    list-style-type: none;
    padding: 0;
}


/* Styles for list items */

.footer-content ul li {
    margin-bottom: 5px;
}


/* Styles for links */

.footer-content a {
    color: #007bff;
    text-decoration: none;
}


/* Styles for social icons */

.social-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
}


/* Styles for social icons */

.boximg {
    transition: transform 0.3s ease;
}

.zoomin:hover~.boximg {
    transform: scale(1.3);
}
.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.about-section .right {
  flex: 1;
  max-width: 600px;
}

.about-section h2 {
  font-size: 26px;
  color: #232B65;
  margin-bottom: 15px;
}

.arrow-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.arrow-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* LOGO + ANIMATED BOX */
.logo-container {
  position: relative;
  display: inline-flex;       /* sits nicely inside navbar flex */
  align-items: center;
  gap: 0;                     /* no extra gap inside logo */
}

.logo-container img{
    height: 120px;
}


/* subtle breathing / glow effect */
@keyframes logoPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 45, 65, 0.8);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(20, 45, 65, 0);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(20, 45, 65, 0);
    transform: scale(1);
  }
}


.logo-text {
    display: inline-flex;
    align-items: center;
    font-size: 48px !important;
    font-weight: 700;
    font-family: "Dancing Script", cursive;
    letter-spacing: 2px;
    color: #CCAD77 !important;
    text-decoration: none;
    /* Simple but premium enhancement */
    border-radius: 12px;                    /* smooth pill */
    transition: 0.25s ease;
    padding: 0 !important;
}
.logo-text:hover {
    background: none !important;
    box-shadow: none !important;
}
.logo-number {
    font-size: 52px;
    padding: 0 2px;
    color: #CCAD77;
    
}


.logo-number {
  font-size: 60px;         
  padding: 0 2px;
  color: #CCAD77;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.select-country{
    text-decoration: dashed;
}

/* OTHER VISAS mega menu laid out like a table */
.third-navbar .dropdown-content {
    max-width: 100vw;
}

/* Use a grid instead of flex */
.third-navbar .dropdown-content .wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr)); /* 3 equal columns */
    gap: 24px 40px;                                      /* row / column gaps */
    padding: 20px;
    box-sizing: border-box;
}

/* Each <ul> = one cell in the grid */
.third-navbar .dropdown-content .wrapper ul {
    margin: 0 !important;      /* override old margin:50px; */
    padding: 12px 18px;
    background-color: #f5f5f5; /* optional: same box style for all */
    list-style: none;
}

/* Mobile: stack columns */
@media (max-width: 900px) {
    .third-navbar .dropdown-content .wrapper {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 600px) {
    .third-navbar .dropdown-content .wrapper {
        grid-template-columns: 1fr;
    }
}

.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar .logo-container {
    flex: 0 0 auto;   /* stays its natural width */
}

.navbar .middle-image {
    flex: 1;                       /* expands to fill empty space */
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 250px;
    height: 135px;
    position: relative;
    top: -10px;              /* prevents collapsing */
}


.navbar .middle-image img {
    height: 120px;                  /* ← YOUR requirement */
    width: auto;                   /* maintain aspect ratio */
    max-width: 100%;               /* allow stretching */
    object-fit: contain;           /* never distort */
    display: block;
}


.navbar .social-icons {
    flex: 0 0 auto;   /* stay fixed on the right */
    display: flex;
    gap: 10px;
}
/* FORCE glow to work even inside dropdown */
.select-country {
    position: relative !important;
    z-index: 999 !important;

    border-radius: 8px;
    padding: 12px 20px !important;

    background: white !important;
    border: 2px solid #CCAF77 !important;

    animation: glowPulse 1.6s infinite ease-in-out !important;
}

/* Continuous glowing animation */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 0px rgba(204, 175, 119, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(204, 175, 119, 0.85);
        transform: scale(1.035);
    }
    100% {
        box-shadow: 0 0 0px rgba(204, 175, 119, 0.1);
        transform: scale(1);
    }
}

/* Hover override (optional but premium) */
.dropdown:hover .select-country {
    box-shadow: 0 0 18px rgba(204,175,119,1) !important;
    background: #fff7e3 !important;
}
@media (max-width: 600px) {
    .navbar{
        justify-content: center;
    }
}





    /* Footer Services Compact Layout */
.footer-services {
    text-align: center;
    padding: 20px 0 10px;
}

.footer-services h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #142D41;
    text-transform: uppercase;
}

.footer-services-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: nowrap; /* FORCE SINGLE LINE */
    overflow-x: auto;  /* still responsive on small screens */
    padding-bottom: 10px;
    flex-wrap: wrap;
}

/* Individual mini-cards in footer */
.footer-service-card {
    width: 250px;
    background: #142D41;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
    text-align: center;
    flex-shrink: 0;
    padding-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.footer-service-card img {
    width: 100%;
    height: 90px;
    object-fit: cover;
}

.footer-service-card p {
    font-size: 15px;
    margin: 8px 0;
}

.footer-service-card a {
    display: inline-block;
    padding: 5px 10px;
    background: #CCAF77;
    color: #142D41;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.footer-service-card a:hover {
    background: #b59864;
    color: #fff;
}



/* =========================
NAV + HEADER ONLY (EXTRACTED)
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
  --navy:#142D41;
  --gold:#CCAF77;
  --bg:#ffffff;
  --soft:#f5f5f5;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:#111;
}

/* =========================
HEADER (Critical stacking fix)
========================= */
.site-header{
  background:#fff;
  position:relative;
  z-index:9999;        /* ensures header stays above hero */
  isolation:isolate;   /* prevents weird z-index bleed from below sections */
}

/* TOPBAR */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 16px;
  position:relative;
  z-index:10001; /* above hero, above nav dropdowns */
}

.brand img{
  height:52px;
  width:auto;
  display:block;
}

.topbar-mid{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:200px;
}
.topbar-mid img{
  height:90px;
  width:auto;
  max-width:100%;
  object-fit:contain;
  display:block;
}

.topbar-right{
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:flex-end;
  flex-wrap:wrap;
  position:relative;
  z-index:10002;
}

/* Email */
.nav-email{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  text-decoration:none;
  color:var(--navy);
  font-size:14px;

  border-radius:12px;
  padding:8px 10px;
  position:relative;
  z-index:10003;
  animation: glowPulse 1.6s infinite ease-in-out;
}

.nav-email-2{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  text-decoration:none;
  color:var(--navy);
  font-size:14px;

  border-radius:12px;
  padding:8px 10px;
  position:relative;
  z-index:10003;
  animation: glowPulse 1.6s infinite ease-in-out;
}

.email-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
}

/* Socials */
.socials{
  display:flex;
  gap:8px;
  align-items:center;
}
.socials-2{
  display:flex;
  gap:8px;
  align-items:center;
}

/* Country dropdown (topbar) */
.dropdown{ position:relative; }

/* GLOW (Select Country) */
.select-country{
  font-family:'Poppins',sans-serif;
  font-weight:700;
  border:2px solid var(--gold);
  background:#fff;
  padding:10px 14px;
  border-radius:12px;
  cursor:pointer;

  position:relative;
  z-index:10003;
  animation: glowPulse 1.6s infinite ease-in-out;
}

/* Continuous glowing animation */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0px rgba(204, 175, 119, 0.12);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 26px rgba(204, 175, 119, 0.85);
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 0px rgba(204, 175, 119, 0.12);
    transform: scale(1);
  }
}

/* dropdown content */
.dropdown-content{
  display:none;
  position:absolute;
  top:110%;
  left:0;
  background:#fff;
  border:1px solid #eee;
  min-width:190px;
  box-shadow:0 12px 28px rgba(0,0,0,.12);
  z-index:10050; /* must be higher than everything in header */
  border-radius:12px;
  overflow:hidden;
}
.dropdown-content a{
  display:block;
  padding:10px 12px;
  text-decoration:none;
  color:#111;
  font-size:14px;
}
.dropdown-content a:hover{
  background:#f2f2f2;
}

/* =========================
MAIN NAV (Hamburger overlap fix)
========================= */
.main-nav{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 16px;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
  background:#fff;

  z-index:10010; /* higher than hero + most header elements */
}

/* show logo inside nav only on mobile */
.nav-logo-mobile{ display:none; }
.nav-logo-mobile img{ height:38px; width:auto; display:block; }

/* Hamburger */
.hamburger{
  display:none;
  width:46px;
  height:46px;
  border:2px solid var(--gold);
  border-radius:12px;
  background:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;

  position:relative;
  z-index:10040; /* ensures it NEVER gets covered */
}
.hamburger span{
  display:block;
  width:22px;
  height:2px;
  background:var(--navy);
}

/* Links */
.nav-links{
  display:flex;
  align-items:center;
  gap:6px;
}

.nav-links a,
.nav-dd-btn{
  font-family:'Poppins',sans-serif;
  font-size:14px;
  font-weight:600;
  border:none;
  background:none;
  cursor:pointer;
  padding:12px 14px;
  border-radius:12px;
  color:var(--navy);
  text-decoration:none;
  transition: .18s ease;
}
.nav-links a:hover,
.nav-dd-btn:hover{
  background:#f2f2f2;
}

/* Dropdown inside main nav */
.nav-item{ position:relative; }

.nav-dd{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  border:1px solid #eee;
  border-radius:14px;
  box-shadow:0 16px 38px rgba(0,0,0,.14);
  z-index:10060;
  padding:10px;
  min-width:320px;
}

.dd-title{ font-size:14px; }

/* Mega menu grid */
.nav-dd .wrapper{
  display:grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap:18px 24px;
  padding:10px;
}
.nav-dd .wrapper ul{
  list-style:none;
  margin:0;
  padding:12px 14px;
  background:var(--soft);
  border-radius:12px;
}
.nav-dd .wrapper ul li{
  margin:8px 0 0;
  padding-left:18px;
  position:relative;
}
.nav-dd .wrapper ul li::before{
  content:'\27A1';
  position:absolute;
  left:0;
  top:0;
  color:#333;
}
.nav-dd .wrapper ul li a{
  color:#222;
  text-decoration:none;
  font-weight:500;
  font-size:13px;
}
.nav-dd .wrapper ul li a:hover{
  text-decoration:underline;
}

/* Desktop hover dropdown */
@media (min-width: 992px){
  .has-dd:hover .nav-dd{ display:block; }
}

/* =========================
RESPONSIVE NAV (Tablet/Mobile)
========================= */
@media (max-width: 991px){
  .topbar-mid{ display:none; }
  .brand{ display:none; }
  .nav-logo-mobile{ display:block; }
  .hamburger{ display:flex; }

  /* mobile menu panel */
  .nav-links{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    background:#fff;
    padding:10px 12px 14px;
    border-bottom:1px solid #eee;
    z-index:10055;
  }
  .nav-links.open{ display:flex; }

  .nav-links a,
  .nav-dd-btn{
    width:100%;
    text-align:left;
    padding:14px 12px;
  }

  /* accordion dropdown */
  .nav-dd{
    position:static;
    display:none;
    border:none;
    box-shadow:none;
    padding:0;
    margin:0 0 8px 0;
    z-index:auto;
  }
  .nav-item.open .nav-dd{ display:block; }

  .nav-dd .wrapper{
    grid-template-columns:1fr;
    padding:0;
  }
  .nav-dd .wrapper ul{
    background:#fafafa;
    border:1px solid #eee;
  }
}

/* Small phone tweak */
@media (max-width: 480px){
  .nav-email{ font-size:13px; }
  .nav-email-2{ font-size:13px; }
  .select-country{ padding:10px 12px; }
}

/* mobile swap extra email/social */
.nav-email-2{ display: none; }
.socials-2{ display: none; }

@media screen and (max-width: 500px) {
  .topbar-right {
    display: flex;
    flex-direction: column;
    width: 100vw;
  }
  .nav-email-2{ display: block; }
  .socials-2{ display: block; } 
  .nav-email{ display: none; }
  .socials{ display: none; }
}

/* =========================
MOBILE FIX: Country dropdown as fixed sheet
========================= */
@media (max-width: 991px){
  .country-dd .dropdown-content{
    position: fixed;
    left: 12px;
    right: 12px;
    top: 64px;
    max-height: calc(100vh - 90px);
    overflow: auto;
    z-index: 20000;
    border-radius: 14px;
  }

  .site-header{ z-index: 19999; }
  .topbar{ z-index: 20001; }
}

/* =========================
MOBILE FLOATING EMAIL FAB (bottom-right)
========================= */
.mobile-mail-fab{
  display:none;
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:30000;
  text-decoration:none;
  outline:none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-mail-icon{
  width:54px;
  height:54px;
  border-radius:999px;
  background:#fff;
  border:2px solid var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
  position:relative;
  animation: mailGlow 1.6s infinite ease-in-out;
}

@keyframes mailGlow{
  0%   { box-shadow:0 0 0 rgba(204,175,119,.0), 0 14px 30px rgba(0,0,0,.18); transform:translateY(0); }
  50%  { box-shadow:0 0 28px rgba(204,175,119,.85), 0 16px 34px rgba(0,0,0,.20); transform:translateY(-1px); }
  100% { box-shadow:0 0 0 rgba(204,175,119,.0), 0 14px 30px rgba(0,0,0,.18); transform:translateY(0); }
}

.mobile-mail-pill{
  position:absolute;
  right:64px;
  bottom:6px;
  height:42px;
  display:flex;
  align-items:center;
  padding:0 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #eee;
  box-shadow:0 14px 30px rgba(0,0,0,.14);
  white-space:nowrap;

  opacity:0;
  transform:translateX(14px);
  pointer-events:none;
  transition: .22s ease;
}

.mobile-mail-pill .pill-text{
  font-family:'Poppins',sans-serif;
  font-weight:800;
  font-size:13px;
  color:var(--navy);
}

.mobile-mail-fab.is-open .mobile-mail-pill{
  opacity:1;
  transform:translateX(0);
  pointer-events:none;
}

@media (max-width: 991px){
  .mobile-mail-fab{ display:block; }
}

/* =========================
COUNTRY DROPDOWN: HARD Z-INDEX FIX
========================= */

/* Ensure header always wins against hero stacking contexts */
.site-header{
  position: relative;
  z-index: 999999;
  isolation: isolate;
}

/* Create a local stacking context inside topbar */
.topbar,
.topbar-right,
.country-dd{
  position: relative;
  z-index: 999999;
}

/* Button must be above any other header items */
.country-dd .select-country{
  position: relative;
  z-index: 9999999;
}

/* Dropdown panel MUST render above everything */
.country-dd .dropdown-content{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 10000000;

  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}



/* MOBILE: dropdown becomes FIXED sheet overlay */
@media (max-width: 991px){
  .country-dd .dropdown-content{
    position: fixed;
    left: 12px;
    right: 12px;
    top: 76px; /* adjust if your header height changes */
    max-height: calc(100vh - 110px);
    overflow: auto;

    z-index: 20000000; /* higher than hamburger/menu */
  }
}
/* ===== Country dropdown hover stability fix ===== */

.country-dd{
  position: relative;
}

/* Remove hover-gap: keep panel attached */
.country-dd .dropdown-content{
  top: 100%;        /* attach exactly under button */
  margin-top: 0;    /* remove gap */
}

/* Create an invisible “hover bridge” between button and panel */
.country-dd .dropdown-content::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-12px;       /* bridge height */
  height:12px;
}

.nav-email-2{
    display: none;
}
.socials-2{
    display: none;
}

@media screen and (max-width: 500px) {
    .topbar-right {
        display: flex;
        flex-direction: column;
        width: 100vw;
    }
    .nav-email{
        display: none;
    }
    .socials{
        display: none;
    }
}
/* ===== Country dropdown: click-to-open (mobile + desktop safe) ===== */

/* default closed */
.country-dd .dropdown-content{
  display: none;
}

/* open when JS adds .open */
.country-dd.open .dropdown-content{
  display: block;
}



/* Country dropdown visibility controlled by JS */
.country-dd .dropdown-content { display: none; }
.country-dd.open .dropdown-content { display: block; }

/* Country dropdown base */
.country-dd { position: relative; }

.country-dd .dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  z-index: 9999999;
}

.country-dd.open .dropdown-content {
  display: block;
}

/* Mobile: dropdown becomes a fixed sheet */
@media (max-width: 991px) {
  .country-dd .dropdown-content {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 76px;
    max-height: calc(100vh - 110px);
    overflow: auto;
  }
}

/* Canada country dropdown hover stability */
.country-dd {
  position: relative;
}

.country-dd .dropdown-content {
  top: 100%;
  margin-top: 0;
}

/* Invisible hover bridge */
.country-dd .dropdown-content::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
/* Country dropdown visibility controlled by JS */
.country-dd .dropdown-content { display: none; }
.country-dd.open .dropdown-content { display: block; }

/* Hover stability bridge */
.country-dd { position: relative; }
.country-dd .dropdown-content { top: 100%; margin-top: 0; }
.country-dd .dropdown-content::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -12px;
  height: 12px;
}

/* Mobile: dropdown becomes fixed overlay sheet */
@media (max-width: 991px) {
  .country-dd .dropdown-content {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 76px;
    max-height: calc(100vh - 110px);
    overflow: auto;
    z-index: 20000000;
  }
}