    :root {
            --primary-color: #1b8291; 
            --secondary-color: #70b8b4; 
            --third-color: #01002e; 
            --fourt-color: #ffffff;  
            --fifth-color: #d1d5db; 
            --sixth-color: #1b8291;
            --seventh-color : transparent;
            --lite-primary-color: #dcfffd;
        }


        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }
@font-face {
    font-family: 'Ranade-Light';
    src: url('fonts/Ranade-Light.otf') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
     }
       html,body {
            font-family: 'Ranade-Light',apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--seventh-color);
            overflow-x: hidden;
            
        }

            .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0);
            z-index: 2;
        }


/*  Nav Menu Starts */        


    /* Nav Menu */

    @font-face {
    font-family: 'Barlow-BlackItalic';
    src: url('fonts/Barlow-Medium.ttf') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
     }
          /* Header styles */
          .nav-header {
            font-family: Barlow-BlackItalic , apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            position: fixed;
            top: 0;
            z-index: 50;
            width: 100%;
            background-color: var(--seventh-color);
            backdrop-filter: blur(12px);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .nav-wrapper {
            display: flex;
            height: 3.5rem;
            align-items: center;
            justify-content: space-between;
        }

        /* Logo styles */
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--sixth-color);
            font-weight: bold;
        }

        /* Navigation menu styles */
        .nav-menu {
            display: none;
        }

        @media (min-width: 1024px) {
            .nav-menu {
                display: flex;
                align-items: center;
                gap: 2rem;
                margin: 0 auto;
            }
        }

        .nav-item {
            position: relative;
            list-style: none;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 1rem;
            color: var(--sixth-color);
            text-decoration: none;
            font-size: 0.875rem;
            border-radius: 0.375rem;
            transition: background-color 0.2s;
        }

        .nav-link:hover {
            background-color: var(--fifth-color);
        }

        /* Dropdown styles */
        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 400px;
            padding: 1rem;
            background: #e6f7f6;
            border: 1px solid var(--third-color);
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .nav-item:hover .dropdown {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .dropdown-item {
            display: block;
            padding: 0.75rem;
            text-decoration: none;
            color: var(--sixth-color);
            border-radius: 0.375rem;
            transition: background-color 0.2s;
        }

        .dropdown-item:hover {
            background-color: var(--fourt-color);
        }

        /* Badge styles */
        .nav-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.125rem 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--sixth-color);
            background-color: #fbbf24;
            border-radius: 9999px;
            margin-left: 0.5rem;
        }

        /* Button styles */
        .nav-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 0.375rem;
            transition: all 0.2s;
            cursor: pointer;
            text-decoration: none;
        }


        .nav-button-primary {
            color: var(--primary-color);
            background-color: transparent;
            border: 1px solid var(--primary-color);
        }

        .nav-button-primary:hover {
            background-color: #1b8291;
            color: #01002e;
        }

        /* Mobile menu styles */
        .mobile-menu-button {
            color: #01002e;
            display: block;
            padding: 0.5rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        @media (min-width: 1024px) {
            .mobile-menu-button {
                display: none;
            }
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            max-width: 300px;
            height: 100vh;
            background: white;
            padding: 2rem 1rem;
            transition: left 0.3s ease-in-out;
            z-index: 100;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 99;
        }

        .mobile-menu-overlay.active {
            display: block;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-nav-link {
            display: block;
            padding: 0.75rem 0;
            color: #000;
            text-decoration: none;
            font-size: 1rem;
            border-bottom: 1px solid #e5e7eb;
        }

/*  Nav Menu Ends */

/* Header Section Starts */

        .header-section {
            position: relative;
            background: #ffffff;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 20px;
            overflow: hidden;
        }

        /* Geometric Pattern Background */
        .header-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(#dcfffd 1px, transparent 1px),
                linear-gradient(90deg, #dcfffd 1px, transparent 1px);
            background-size: 50px 50px;
            background-position: 0 0, 0 0;
            z-index: 1;
        }

        /* Additional geometric overlay */
        .header-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(216, 0, 0, 0.02) 1px, transparent 1px),
                radial-gradient(circle at 75% 75%, rgba(216, 0, 0, 0.02) 1px, transparent 1px);
            background-size: 100px 100px;
            z-index: 1;
        }

        .header-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            width: 100%;
        }

        .header-title {
            color: #1b8291;
            font-size: 64px;
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .header-subtitle {
            color: #1b8291;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.5;
        }


        /* Responsive Design */
        @media (max-width: 1024px) {
            .header-section {
                min-height: 350px;
                padding: 60px 20px;
            }
            
            .header-title {
                font-size: 56px;
            }
            
            .header-subtitle {
                font-size: 17px;
            }
        }

        @media (max-width: 768px) {
            .header-section {
                min-height: 300px;
                padding: 50px 15px;
            }
            
            .header-title {
                font-size: 48px;
                margin-bottom: 20px;
            }
            
            .header-subtitle {
                font-size: 16px;
            }
            
            .header-section::before {
                background-size: 40px 40px;
            }
            
            .header-section::after {
                background-size: 80px 80px;
            }
        }

        @media (max-width: 640px) {
            .header-section {
                min-height: 280px;
                padding: 40px 15px;
            }
            
            .header-title {
                font-size: 40px;
                margin-bottom: 18px;
            }
            
            .header-subtitle {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .header-section {
                min-height: 250px;
                padding: 35px 10px;
            }
            
            .header-title {
                font-size: 32px;
                margin-bottom: 16px;
                line-height: 1.2;
            }
            
            .header-subtitle {
                font-size: 14px;
                line-height: 1.4;
            }
            
            .header-section::before {
                background-size: 30px 30px;
            }
            
            .header-section::after {
                background-size: 60px 60px;
            }
        }

        @media (max-width: 320px) {
            .header-section {
                min-height: 220px;
                padding: 30px 8px;
            }
            
            .header-title {
                font-size: 28px;
                margin-bottom: 14px;
            }
            
            .header-subtitle {
                font-size: 13px;
            }
        }

        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .header-section::before,
            .header-section::after {
                background-size: 25px 25px, 50px 50px;
            }
        }

/* Header Section Ends */

/* terms Section Starts */


.terms-container {
  min-height: 100vh;

  padding-top: 3rem; /* py-12 */
  padding-bottom: 3rem; /* py-12 */
  padding-left: 1rem; /* px-4 */
  padding-right: 1rem; /* px-4 */
}

.content-wrapper {
  max-width: 56rem; /* max-w-4xl */
  margin-left: auto;
  margin-right: auto;
}

.main-title {
  font-size: 1rem; /* text-4xl */
  line-height: 2.5rem; /* leading-10 */
  font-weight: 700; /* font-bold */
  color: var(--secondary-color); /* text-gray-900 */
  margin-bottom: 2rem; /* mb-8 */
}

.intro-text {
  font-size: 1.125rem; /* text-lg */
  line-height: 1.75rem; /* leading-7 */
  color: var(--third-color); /* text-gray-700 */
  margin-bottom: 3rem; /* mb-12 */
  line-height: 1.625; /* leading-relaxed */
}

.sections-container {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* space-y-8 */
}

.section-card {
  background-color: var(--fourt-color); /* bg-white */
  padding: 2rem; /* p-8 */
  border-radius: 0.75rem; /* rounded-xl */
  border: 1px solid var(--secondary-color); /* border-gray-200 */;
}

.section-title {
  font-size: 1.5rem; /* text-2xl */
  line-height: 2rem; /* leading-8 */
  font-weight: 700; /* font-bold */
  color: var(--primary-color); /* text-gray-900 */
  margin-bottom: 1rem; /* mb-4 */
  display: flex;
  align-items: center;
}

.arrow-icon {
    color: #1b8291;
  margin-right: 0.75rem; /* mr-3 */
  font-size: 2rem; /* Equivalent to h-6 w-6 for the arrow */
  line-height: 1; /* Ensure it aligns well */
}

.section-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem; /* space-y-4 */
  color: #374151; /* text-gray-700 */
}

.list-item-bold {
  font-weight: 600; /* font-semibold */
}

/* Responsive adjustments */
@media (min-width: 640px) {
  /* sm breakpoint */
  .terms-container {
    padding-left: 1.5rem; /* sm:px-6 */
    padding-right: 1.5rem; /* sm:px-6 */
  }
}

@media (min-width: 1024px) {
  /* lg breakpoint */
  .terms-container {
    padding-left: 2rem; /* lg:px-8 */
    padding-right: 2rem; /* lg:px-8 */
  }
}

/* terms Section Ends */


















/* Footer Section Starts */
    @font-face {
    font-family: 'digitype-studio-mainlux-light';
    src: url('fonts/digitype-studio-mainlux-light.otf') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
     }

        .footer {
            font-family: digitype-studio-mainlux-light , apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-image: url(../assets/images/footer-background.png);
            background-size: cover;
            background-position: center;
            border-top: 1px solid #000000;
            padding: 3rem 1rem 2rem;
        }

        .footer-container {
            max-width: 1350px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-left {
            display: flex;
            flex-direction: column;
            margin-right: 100px;
        }

        .logo img {
            width: 250px;
            height: 50px;
            margin-bottom: 1rem;
        }

        .tagline {
            color: #6b7280;
            font-size: 0.875rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
            max-width: 280px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .social-link {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: background-color 0.2s;
        }

        .social-link img {
            width: 24px;
            height: 24px;
        }

        .social-link:hover {
            background-color: #e5e7eb;
        }

        .partner-logos {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-top: 1rem;
        }

        .partner-logo img {
            width: 100%;
            height: auto;
            max-height: 50px;
            object-fit: contain;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
        }

        .link-column h3 {
            font-size: 1rem;
            font-weight: 600;
            color: #1b8291;
            margin-bottom: 1rem;
        }

        .link-column ul {
            list-style: none;
        }

        .link-column li {
            margin-bottom: 0.75rem;
        }

        .link-column a {
            color: #01002e;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s;
            display: flex;
            align-items: center;
        }

        .link-column a:hover {
            color: #1b8291;
        }

        .new-badge {
            background-color: #1b8291;
            color: #fff;
            font-size: 0.75rem;
            padding: 0.125rem 0.375rem;
            border-radius: 4px;
            margin-left: 0.5rem;
            font-weight: 500;
        }

        .arrow-icon {
            margin-left: 0.25rem;
            font-size: 1.5rem;
        }

        .footer-bottom {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid #e5e7eb;
            font-size: 0.875rem;
            color: #1b8291;
            gap: 1rem;
        }

        .footer-bottom-left {
            color: #01002e;
            font-size: 1rem;
            justify-self: start;
        }

        .footer-bottom-center {
            justify-self: center;
        }

        .footer-bottom-center img {
            height: 32px;
            width: auto;
        }

        .footer-bottom-right {
            font-size: 0.875rem;
            justify-self: end;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .footer-bottom-links a {
            color: #1b8291;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-bottom-links a:hover {
            color: #01002e;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .footer {
                padding: 2rem 1rem 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-links {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1.5rem;
            }

            .partner-logos {
                margin-top: 2rem;
                order: 2;
            }

            .footer-bottom {
                grid-template-columns: 1fr;
                gap: 1rem;
                text-align: center;
            }

            .footer-bottom-left,
            .footer-bottom-center,
            .footer-bottom-right {
                justify-self: center;
            }

            .footer-bottom-links {
                gap: 1rem;
            }

            .tagline {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1rem;
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom-links {
                flex-direction: row;
                gap: 1rem;
            }
        }

/* Footer Section Ends */