:root {
    --primary-orange: #ff6600;
    --primary-blue: #007bff;
    --text-color: #333;
    --white: #fff;
    --bg-color-1: #f7a01c;
    --bg-color-2: #1e1e1e; /* A dark blue/grey to match the video's second slide */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

.header {
    position: fixed;
    width: 100%;
    z-index: 100;
    background-color: transparent;
    transition: background-color 0.5s ease-in-out;
}

.header.solid {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5rem;
}

.logo-container {
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  color: #170482;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  margin-right: 10px;
}

.word-1 {
  font-size: 1.5em; /* Large and bold for prominence */
  font-weight: bold;
  letter-spacing: -1px;
}

.word-2 {
  font-size: 0.8em; /* Smaller and subtle */
  font-weight: normal;
  text-transform: uppercase;
  margin-top: 1px; /* Adjust vertical spacing to be tight */
}

.logo-accent {
  width: 5px;
  height: 30px;
  background-color: #007bff; /* A clean blue accent color */
  border-radius: 2px;
}
.search-icon {
    color: whitesmoke;
    transition: color 0.5s ease-in-out;
    
}

.search-icon i {
    font-size: 1.2rem;
}

.header.slide-blue .nav-links a, .header.slide-blue .search-icon {
    color: var(--white);
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    transition: all 0.5s ease-in-out;
}

.nav-links li {
    margin: 0 1.5rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.5s ease-in-out;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.header.slide-blue .hamburger-menu .bar {
    background-color: var(--white);
}


/* Main Slider Content */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    display: flex;
    opacity: 10;
}

.slide-1 {
    background-color: var(--bg-color-1);
    color: var(--white);
     background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slide-2 {
    background-color: var(--bg-color-2);
    color: var(--white);
     background-image: url('https://images.pexels.com/photos/4389742/pexels-photo-4389742.jpeg');
     background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    z-index: 2;
}

.text-content {
    flex: 1;
    max-width: 50%;
    margin-left: 5px;
}

.text-content h1 {
    font-size: 3em;
    line-height: 1.2;
    margin-left: 0.5%;
    
}

.know-more-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--white);
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}


.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--white);
}

/* --- Media Queries for Responsiveness --- */

/* For tablets and smaller laptops */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 2rem;
    }
    
    .nav-links {
        display: none; /* Hide the full menu */
    }

    .hamburger-menu {
        display: flex; /* Show the hamburger menu */
        z-index: 101; /* Ensure it's on top of the mobile menu */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 60%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease-in-out;
        box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    }
    
    .nav-links.active {
        right: 0; /* Slide in on activation */
        display: flex;
    }
    
    .nav-links li {
        margin: 2rem 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--text-color);
    }
    
    .header.slide-blue .hamburger-menu .bar {
        background-color: var(--text-color); /* Change to dark color on blue background */
    }

    .content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        width: 90%;
    }

    .text-content, .image-content {
        max-width: 100%;
    }

    .text-content h1 {
        font-size: 2.5rem;
    }

    .image-content {
        margin-top: 2rem;
    }
}

/* For mobile phones */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .logo img {
        height: 30px;
    }

    .search-icon i {
        font-size: 1rem;
    }

    .text-content h1 {
        font-size: 1.8rem;
    }

    .know-more-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .image-content img {
        max-width: 80%;
    }
}

 /* New section-specific styles */
    .content-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 20px;
        background-color: #f9f9f9; /* A light background to separate it from the hero section */
        text-align: center;
        
        margin: 0 auto;
    }

    .content-section h3 {
        font-size: 2em;
        font-weight: 500;
        color:rgb(5, 5, 56);
        margin-bottom: 20px;
        font-weight: bold;
    }

    .content-section p {
        font-size: 1.5em;
        line-height: 1.6;
        max-width: 1000px;
        color: #666;
        margin-bottom: 30px; /* Add margin to separate text from button */
        
    }



    /* --- Media Queries for responsiveness --- */

    /* For screens smaller than 1024px (e.g., tablets and smaller desktops) */
    @media (max-width: 1024px) {
        .content-section {
            padding: 40px 15px;
        }

        .content-section h2 {
            font-size: 1.8em;
        }
    }
    
    /* For screens smaller than 768px (e.g., mobile phones) */
    @media (max-width: 768px) {
        .content-section {
            padding: 30px 10px;
        }

        .content-section h3 {
            font-size: 1.5em;
        }

        .content-section p {
            font-size: 0.9em;
        }

        .cta-button-section {
            padding: 12px 25px; /* Adjust button padding for smaller screens */
            font-size: 0.9em;
        }
    }


    /* Use Roboto font for a modern look */
        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
        
        /* Base styles */
        .page-bg {
            color: #f1f5f9; /* text-slate-100 */
            display: flex;
            justify-content: center;
            padding: 0.5rem; /* p-2 */
            font-family: 'Roboto', sans-serif;
        }
        
        .container {
            max-width: 80rem; /* max-w-7xl */
            width: 100%;
            padding: 20px 10px;
           
            
        }
        
        /* Grid and card styles */
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;

        
        }

        .card {
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); /* shadow-xl */
            transition: transform 300ms;
            border-radius: 10px;
        }
        
        .card:hover {
            transform: scale(1.03);
        }
        
        .card-bg {
            position: absolute;
            inset: 0;
        }

        .card-bg img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.6);
            transition: background-color 300ms;
        }
        
        .card:hover .overlay {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .card-content {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
            padding: 1.5rem; /* p-6 */
            color: white;
        }

        .tag {
            font-size: 0.75rem; /* text-xs */
            font-weight: 600;
            text-transform: uppercase;
            padding: 0.25rem 0.75rem; /* px-3 py-1 */
            border-radius: 9999px; /* rounded-full */
            margin-bottom: 0.5rem; /* mb-2 */
            align-self: flex-start;
        }
        
        .tag-indigo {
            color: #818cf8; /* text-indigo-400 */
            background-color: rgba(67, 56, 202, 0.5); /* bg-indigo-900/50 */
        }

        .tag-green {
            color: #4ade80; /* text-green-400 */
            background-color: rgba(22, 101, 52, 0.5); /* bg-green-900/50 */
        }
        
        .tag-yellow {
            color: #facc15; /* text-yellow-400 */
            background-color: rgba(113, 63, 18, 0.5); /* bg-yellow-900/50 */
        }

        .tag-purple {
            color: #c084fc; /* text-purple-400 */
            background-color: rgba(76, 29, 149, 0.5); /* bg-purple-900/50 */
        }

        .card-title {
            font-size: 1rem; /* text-xl */
            line-height: 1.25;
        }

        .card-lg {
            min-height: 18.75rem; /* min-h-[300px] */
        }

        .card-sm {
            min-height: 12.5rem; /* min-h-[200px] */
        }
        
        /* Responsive styles for medium screens and up */
        @media (min-width: 768px) {
            .page-bg {
                padding: 1.5rem; /* sm:p-6 */
            }
            .main-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr)); /* md:grid-cols-3 */
                gap: 2.5rem; /* sm:gap-6 */
            }
            .card-lg {
                grid-column: span 2 / span 2; /* md:col-span-2 */
                grid-row: span 2 / span 2; /* md:row-span-2 */
                min-height: 0;
                margin-top: 10PX;
            }
            .card-sm {
                min-height: 15.625rem; /* md:min-h-[250px] */
                margin-top: 10PX;
            }
            .card-content {
                padding: 1.5rem; /* sm:p-8 */
            }
            .tag {
                font-size: 0.875rem; /* sm:text-sm */
            }
            .card-title {
                font-size: 1.5rem; /* sm:text-2xl */
            }
        }
        
        /* Responsive styles for large screens and up */
        @media (min-width: 1024px) {
            .page-bg {
                padding: 2rem; /* lg:p-8 */
            }
            .card-title-lg {
                font-size: 1.875rem; /* lg:text-3xl */
            }

            .main-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr)); /* md:grid-cols-3 */
                gap:5px;
        }
    }



.info-card-container {
  display: flex;
  justify-content: center;
  gap: 8rem;
  text-align: center;
  flex-wrap: wrap;
  margin-top: 20PX;
  margin-bottom: 20PX;
}

.info-card {
  width: 250px;
  position: relative;
}

.info-card-title {
  color: #003f4d;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.toggle-button {
  background-color: #b3b3b3;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin: 0 auto;
  cursor: pointer;
  transition: background-color 0.3s;
}

.toggle-button:hover {
  background-color: #808080;
}

.info-card-details {
  display: none;
  margin-top: 1rem;
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: #333;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}




.enquire-now {
  position: fixed;
  top: 40%;
  right: 0;
  transform: rotate(-90deg);
  transform-origin: right center;
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  margin-right: 30px;
  text-decoration: none;
  background: #095161;
  
}

  .custom-link {
  text-decoration: none;
  color: whitesmoke;
}

.custom-link:hover {
  color: #38bdf8;  /* brighter on hover */


    text-decoration: none;
    font-weight: bold;
}



 .about-us-container {
            width: 100%;
            text-align: center;
            
        }

        /* Header styles */
        .about-us-header {
            margin-bottom: 3rem;
        }

        .main-heading {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 900px;
            color: #1a5c68; /* A deep teal from the image */
            margin-bottom: 0.5rem;
            margin-top: 20PX;
            
            
            
        }

        .sub-heading {
            
            font-weight: 400;
            color: #6c757d;
            margin: 0 auto;
            margin-left: 10%;
            margin-right: 10%;
            
            
        }
        .sub-heading{
            font-size: clamp(4rem, 5vw, 2.5rem);
        }

        /* Statistics grid styles */
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            margin-left: 8%;
            margin-right: 10%;
            
            
        }

        .stat-item {
            flex-grow: 1; /* Allow items to grow and take up available space */
            flex-basis: 220px; /* A flexible base width for wrapping */
            text-align: center;
            padding: 1rem;
        }

        .stat-number {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            margin: 0 0 0.5rem 0;
            line-height: 1;
        }

        .stat-description {
            font-size: 1rem;
            color: #6c757d;
            margin: 0;
        }

        /* Color classes for statistics */
        .stat-blue {
            color: #2196f3; /* A bright blue */
        }
        
        .stat-orange {
            color: #ff5722; /* A vibrant orange */
        }

        .stat-purple {
            color: #9c27b0; /* A rich purple */
        }

        .stat-yellow {
            color: #ffc107; /* A golden yellow */
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .stats-grid {
                flex-direction: column;
                align-items: center;
            }
            .stat-item {
                flex-basis: auto;
                width: 100%;
                max-width: 300px;
            }
        }

.footer {
  background-color: #f9fafb;
  color: #0f172a;
  padding: 2rem 1rem;
  font-family: 'Roboto', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: #0f172a;
  border-bottom: 1px solid #cbd5e1;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #007b8f;
}

.social-icons a {
  margin-right: 0.5rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.social-icons img:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid #e2e8f0;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom select {
  padding: 0.5rem;
  font-size: 0.9rem;
}





   /* Import a clean, modern font */
        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

        /* Base styles for the section */
        .rewards-section-container {
            font-family: 'Roboto', sans-serif;
            background-color: #cce0f5; /* Light blue background from the image */
            margin: 0;
            padding: clamp(1rem, 4vw, 3rem) 1rem; /* Responsive padding */
            display: flex;
            justify-content: center;
        }
        
        .services-container {
            max-width: 1200px;
            width: 100%;
            text-align: center;
        }

        /* Header styles */
        .services-header {
            margin-bottom: 3rem;
        }

        .main-heading {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            color: #1a5c68; /* A deep teal from the image */
            border-bottom: 0.5px solid black;
            display: inline-block;
        }

        /* Subheading/explanation styles */
        .sub-heading {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            font-weight: 400;
            color: #6481a5;
            max-width: 700px;
            margin: 1rem auto 2rem auto;
            line-height: 1.6;
        }
        
        /* Service card styles */
        .slider-wrapper {
            position: relative;
            max-width: 100%;
            overflow: hidden;
        }
        
        .service-card-container {
            display: flex;
            gap: 1.5rem;
            flex-wrap: nowrap;
            overflow-x: hidden; /* Hide the scrollbar */
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 1rem;
        }

        .service-card {
            flex-grow: 0;
            flex-shrink: 0;
            flex-basis: min(300px, 90vw); /* Flexible basis for better responsiveness */
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #0c1a36; /* Dark blue background */
            color: #cce0f5;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            min-height: 150px;
        }
        
        .service-text {
            display: flex;
            flex-direction: column;
            text-align: left;
            padding-right: 1rem;
        }

        .service-title {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            font-weight: 700;
            color: #6481a5; /* A lighter blue color for the text */
            margin: 0 0 0.5rem 0; /* Add margin below the title */
        }

        .service-explanation {
            font-size: 0.9rem;
            font-weight: 400;
            color: #cce0f5;
            margin: 0;
            line-height: 1.4;
        }

        /* Icon styles */
        .service-icon {
            flex-shrink: 0;
            width: 70px;
            height: 70px;
            color: #1a5c68; /* A deep teal from the image */
        }
        
        .service-icon path,
        .service-icon polygon,
        .service-icon circle {
             fill: #1a5c68;
             stroke: #1a5c68;
        }
        
        /* Navigation dots and buttons */
        .dot-container {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 3rem;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            border: 1px solid #1a5c68;
            cursor: pointer;
        }

        .dot.active {
            background-color: #ffffff;
        }
        
        /* Navigation buttons (arrows) */
        .slider-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: #ffffff;
            border: none;
            padding: 0.5rem;
            cursor: pointer;
            z-index: 10;
            font-size: 2rem;
            transition: background-color 0.3s ease;
            border-radius: 50%;
        }

        .slider-nav-button:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        #prev-button {
            left: 0;
        }

        #next-button {
            right: 0;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .service-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .service-text {
                text-align: center;
                padding-right: 0;
                margin-top: 1rem;
            }
            .slider-nav-button {
                display: none; /* Hide arrows on mobile */
            }
        }



        /* Import a clean, professional font */
        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

        body {
            font-family: 'Roboto', sans-serif;
        }

        /* New class name: brykon-hero-section */
        .brykon-hero-section {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f8f8f8; /* Light gray background */
            padding: 2rem 1rem;
        }

        /* New class name: brykon-hero-container */
        .brykon-hero-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 1000px;
            width: 100%;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .brykon-hero-container {
                flex-direction: row;
                text-align: left;
            }
        }
        
        /* Styles for the image and "8" overlay */
        /* New class name: brykon-image-container */
        .brykon-image-container {
            position: relative;
            width: 100%;
            max-width: 450px;
            height: auto;
        }

        /* New class name: brykon-hero-image */
        .brykon-hero-image {
            width: 100%;
            height: 480px;
            border-radius: 0.5rem;
            
        }

        /* New class name: brykon-number-overlay */
        .brykon-number-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-45deg); /* Added rotation for a diagonal effect */
            font-size: clamp(4rem, 15vw, 8rem); /* Made font size responsive */
            color: #677e9f; /* Light gray color for the text */
            opacity: 0.8;
            pointer-events: none;
            z-index: 10;
            white-space: nowrap; /* Prevents the text from wrapping */
        }

          @media (min-width: 768px) {
            .brykon-number-overlay {
                font-size: 10rem; /* Adjusted font size for "Brykon" text */
                position: absolute;
            }
        }

        /* New class name: brykon-content-text */
        .brykon-content-text {
            width: 100%;
            max-width: 600px;
        }
        
        /* New class name: brykon-about-title */
        .brykon-about-title {
            font-size: 25px;
            font-weight: 700;
            color: #1a5c68; /* Deep teal color for the title */
            margin-bottom: 1rem;
        }

        /* New class name: brykon-about-subtitle */
        .brykon-about-subtitle {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: #64748b;
            margin-bottom: 2rem;
            line-height: 1.5;
        }

        /* New class name: brykon-bullet-list */
        .brykon-bullet-list {
            list-style: none;
            padding: 0;
            margin-top: 1.5rem;
        }

        .brykon-bullet-list li {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            font-size: 1rem;
            color: #4b5563;
        }

        /* New class name: brykon-bullet-icon */
        .brykon-bullet-icon {
            color: #1a5c68;
            margin-right: 0.5rem;
            font-weight: bold;
        }

        /* New class name: brykon-contact-button */
        .brykon-contact-button {
            background-color: #352e8c;
            color: white;
            font-weight: 600;
            padding: 0.75rem 2rem;
            transition: transform 0.2s ease-in-out;
            cursor: pointer;
            margin-top: 2rem;
        }

        .brykon-contact-button:hover {
            transform: scale(1.05);
        }
    

         /* Import a clean, professional font */
        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

       

        .contact-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 2rem 1rem;
            background-color: #0c1a36; /* Semi-transparent dark background to simulate the image overlay */
        }
        
        .contact-card {
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 1200px;
            border-radius: 1rem;
            overflow: hidden;
            background-color: #0c1a36; /* Fallback background */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        @media (min-width: 1024px) {
            .contact-card {
                flex-direction: row;
            }
        }
        
        /* Styles for the contact form section */
        .form-section {
            flex: 1;
            padding: 3rem;
            background-color: #0c1a36;
        }

        .form-heading {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .input-group {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .input-group {
                flex-direction: row;
            }
        }

        .input-field {
            width: 100%;
            padding: 0.75rem 1rem;
            background-color: transparent;
            border: 1px solid #4a5568;
            border-radius: 0.5rem;
            color: white;
            outline: none;
            transition: border-color 0.3s ease;
        }
        
        .input-field::placeholder {
            color: #a0aec0;
        }
        
        .input-field:focus {
            border-color: #6481a5;
        }

        .textarea-field {
            width: 100%;
            height: 150px;
            padding: 0.75rem 1rem;
            background-color: transparent;
            border: 1px solid #4a5568;
            border-radius: 0.5rem;
            color: white;
            outline: none;
            transition: border-color 0.3s ease;
            resize: vertical;
        }

        .textarea-field:focus {
            border-color: #6481a5;
        }
        
        .submit-button {
            background-color: #423d9d;
            color: white;
            font-weight: 600;
            padding: 1rem 2rem;
            transition: transform 0.2s ease-in-out;
            cursor: pointer;
            border: none;
            width: 100%;
            margin-top: 2rem;
        }
        
        .submit-button:hover {
            transform: scale(1.05);
        }

        /* Styles for the location section */
        .info-section {
            flex: 1;
            background-color: #1a5c68; /* Green background from image */
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .info-item {
            margin-bottom: 2rem;
        }

        .info-heading {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #cce0f5;
        }
        
        .info-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #e2e8f0;
        }



         /* Import a clean, professional font */
        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

       
        .contact-form-wrapper {
            display: flex;
            flex-direction: column;
            gap: 4rem;
            padding: 4rem 2rem;
            min-height: 100vh;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .contact-form-wrapper {
                flex-direction: row;
                justify-content: center;
            }
        }

        .intro-content {
            max-width: 500px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            text-align: center;
            position: relative; /* Needed for positioning the SVGs */
        }

        @media (min-width: 1024px) {
            .intro-content {
                text-align: left;
            }
        }
        
        .intro-title {
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            font-weight: 900;
            line-height: 1.2;
            color: rgb(22, 21, 105);
        }
        
        .intro-text {
            font-size: clamp(1rem, 2.5vw, 1.125rem);
            font-weight: 400;
            line-height: 1.6;
            color: #81868d; /* text-slate-300 */
        }
        
        .form-content {
            max-width: 600px;
            width: 100%;
        }

        .form-fields-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .form-fields-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .form-field-label {
            font-size: 0.875rem;
            font-weight: 500;
            color: #72787e;
            margin-bottom: 0.25rem;
            display: block;
        }

        .form-field-input, .form-field-textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            background-color: transparent;
            border: 1px solid #475569; /* slate-600 */
            border-radius: 0.5rem;
            color: #0f1010;
            font-size: 1rem;
        }
        
        .form-field-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background-color: #0a4b8b; /* slate-100 */
            color: #0f172a; /* slate-900 */
            font-weight: 700;
            font-size: 1rem;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .submit-btn:hover {
            background-color: #246f42; /* slate-300 */
        }
        
        .form-required-note {
            font-size: 0.875rem;
            color: #646970;
            margin-bottom: 1.5rem;
        }
        
        .opt-in-checkbox {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        /* Styles for the new SVG icons */
        .illustration-wrapper {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            pointer-events: none; /* Make the SVGs non-interactive */
        }
        
        .hand-svg {
            position: absolute;
            bottom: -40px;
            left: -20px;
            width: clamp(200px, 40vw, 300px);
            height: auto;
            opacity: 0.8;
        }
        
        .mail-svg {
            position: absolute;
            bottom: 100px;
            left: 150px;
            width: clamp(80px, 15vw, 100px);
            height: auto;
            opacity: 0.9;
        }

        @media (max-width: 1023px) {
            .illustration-wrapper {
                display: none; /* Hide illustrations on small screens to avoid clutter */
            }
        }


        /* Define custom colors based on the image provided */
        .navigate-bg-brown {
            background-color: #8C533A; /* A deep brown color */
        }
        .navigate-bg-blue {
            background-color: #0E77B1; /* A rich blue color */
        }
        .navigate-bg-purple {
            background-color: #5F156D; /* A deep purple color */
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
        }

        .navigate-container {
            max-width: 1200px;
        }

        .navigate-main-heading {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            color: #1a1a1a;
        }
        
        /* Card styling to match the image */
        .navigate-card {
            border-radius: 0.5rem;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 450px;
            position: relative;
        }

        .navigate-card-content {
            color: #ffffff;
            padding: 2rem;
            z-index: 10; /* Ensure content is above the image */
        }

        .navigate-card-title {
            font-size: clamp(1.25rem, 3vw, 1.5rem);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .navigate-card-description {
            font-size: clamp(1rem, 2vw, 1.125rem);
            line-height: 1.6;
        }
        
        .navigate-card-image {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100%;
            height: auto;
            object-fit: cover;
            z-index: 5;
        }
