:root {
    --primary-navy: #1E3A8A;
    --secondary-amber: #F59E0B;
    --accent-gray: #9CA3AF;
    --bg-light: #F3F4F6;
    --text-dark: #1F2937;
    --border-color: #D1D5DB;
    --accent-amber:#fde9c8;

    --primary-blue: var(--primary-navy);
    --accent-blue: var(--primary-navy);
    --accent-orange: var(--secondary-amber);
    --bg-white: #FFFFFF; 
    --bg-light-grey: var(--bg-light); 
    --section-blue-bg: #dcedff;
    --section-green-bg: #ebf9eb; 
    --footer-bg: var(--text-dark); 
    --text-primary: var(--text-dark);
    --text-secondary: var(--accent-gray); 
    --header-height: 75px;
    --font-family-poppins: 'Poppins', sans-serif;
    --text-light: var(--bg-white); 
    --background-light: var(--bg-light);
    --background-dark: var(--footer-bg);
    --secondary-blue: var(--primary-navy);
    --secondary-green: var(--secondary-amber); 
    --primary-green: var(--secondary-amber); 
    --accent-green: var(--secondary-amber); 
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacMacFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.container-home {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
}

a:hover {
    color: var(--secondary-blue);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-blue);
    color: var(--text-light);
}

.btn-primary {
    background-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
}

.btn-secondary {
    background-color: var(--secondary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--background-light);
}

.section-title-home {
    font-size: 2.5em;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.section-title-home::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-green);
    border-radius: 2px;
}

.section-subtitle-home {
    font-size: 1.2em;
    text-align: center;
    color: var(--text-secondary); 
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 40px;
}

/* Header Styles */
.main-header {
    background-color: var(--text-light);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.main-header .container-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Nav Toggle Animation */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background-color: var(--bg-white);
    color: var(--primary-blue);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease-in-out;
    padding-top: 80px;
    overflow-y: auto;
    z-index: 999;
}

.main-nav.active {
    right: 0;
}

.main-nav ul {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.main-nav ul li {
    position: relative;
    margin-bottom: 15px;
}

.main-nav ul li a {
    color: var(--primary-blue);
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.main-nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1); 
    color: var(--accent-green);
}

.main-nav .nav-register-btn {
    margin-top: 20px;
}

.main-nav .nav-register-btn .btn {
    width: 100%;
    text-align: center;
    background-color: var(--accent-green);
    color: var(--text-dark); 
    padding: 5px ;
}

.main-nav .nav-register-btn .btn:hover {
    background-color: var(--secondary-green);
}

/* Dropdown Menu - Vertical for mobile */
.main-nav .has-dropdown .dropdown-menu {
    display: none;
    flex-direction: column;
    background-color: var(--bg-white);
    padding: 10px 0;
    border-radius: 5px;
    margin-top: 5px;
}

.main-nav .has-dropdown.active .dropdown-menu {
    display: flex;
}

.main-nav .has-dropdown .dropdown-menu li {
    margin-bottom: 0;
}

.main-nav .has-dropdown .dropdown-menu li a {
    padding: 8px 25px;
    color: var(--primary-blue);
}

.main-nav .has-dropdown .dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--accent-orange);
}

.main-nav .has-dropdown .fa-chevron-down {
    margin-left: 8px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.main-nav .has-dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
}

.main-nav .contact-dropdown span {
    display: block;
    color: var(--primary-blue);
    padding: 8px 25px;
    font-size: 0.95em;
}

.main-nav .contact-dropdown span i {
    margin-right: 10px;
    color: var(--accent-orange);
}

/* Hero */
.hero-home {
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 15px;
    }

    /* Animated background elements */
    .hero-home::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      background: rgba(245, 158, 11, 0.1);
      border-radius: 50%;
      top: -200px;
      right: -200px;
      animation: float 6s ease-in-out infinite;
    }

    .hero-home::after {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      bottom: -150px;
      left: -150px;
      animation: float 8s ease-in-out infinite reverse;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0) scale(1);
      }
      50% {
        transform: translateY(-30px) scale(1.05);
      }
    }

    .container-home {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 10;
      width: 100%;
    }

    .hero-content-home {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-text-home {
      color: var(--primary-navy);
    }

    .hero-badge-home {
      display: inline-block;
      background: var(--secondary-amber);
      color: white;
      padding: 8px 20px;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 20px;
      animation: slideInLeft 0.8s ease-out;
    }

    .hero-title-home {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
      animation: slideInLeft 1s ease-out;
    }

    .hero-subtitle-home {
      font-size: 1.3rem;
      line-height: 1.6;
      margin-bottom: 35px;
      opacity: 0.95;
      animation: slideInLeft 1.2s ease-out;
    }

    .hero-buttons-home {
      display: flex;
      gap: 20px;
      animation: slideInLeft 1.4s ease-out;
    }

    .btn {
      padding: 15px 35px;
      border: none;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary {
      background: var(--secondary-amber);
      color: white;
      box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    }

    .btn-primary:hover {
      background: #D97706;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.1);
      color: var(--primary-navy);
      border: 2px solid var(--primary-navy);
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: white;
      color: var(--primary-navy);
      transform: translateY(-2px);
    }

    .hero-visual-home {
      position: relative;
      animation: slideInRight 1s ease-out;
    }

    .hero-card-home {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .stats-grid-home {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      margin-bottom: 30px;
    }

    .stat-item-home {
      text-align: center;
      padding: 20px;
      background: var(--bg-light);
      border-radius: 12px;
      border: 2px solid transparent;
      transition: all 0.3s ease;
    }

    .stat-item-home:hover {
      border-color: var(--secondary-amber);
      transform: translateY(-5px);
    }

    .stat-icon-home {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .stat-number-home {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary-navy);
      margin-bottom: 5px;
    }

    .stat-label-home {
      color: var(--accent-gray);
      font-size: 0.9rem;
      font-weight: 500;
    }

    .features-list-home {
      list-style: none;
    }

    .feature-item-home {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px;
      margin-bottom: 10px;
      background: var(--bg-light);
      border-radius: 10px;
      color: var(--text-dark);
      transition: all 0.3s ease;
    }

    .feature-item-home:hover {
      background: white;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transform: translateX(10px);
    }

    .feature-icon-home {
      width: 40px;
      height: 40px;
      background: var(--primary-navy);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .floating-element-home {
      position: absolute;
      animation: float 4s ease-in-out infinite;
    }

    .float-1-home {
      top: 10%;
      right: -30px;
      width: 60px;
      height: 60px;
      background: rgba(245, 158, 11, 0.2);
      border-radius: 50%;
      animation-delay: 0s;
    }

    .float-2-home {
      bottom: 20%;
      left: -40px;
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      animation-delay: 1s;
    }

    @media (max-width: 968px) {
      .hero-content-home {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }

      .hero-title-home {
        font-size: 2.5rem;
      }

      .hero-buttons-home {
        justify-content: center;
      }

      .stats-grid-home {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .hero-title-home {
        font-size: 2rem;
      }

      .hero-subtitle-home {
        font-size: 1.1rem;
      }

      .hero-buttons-home {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .stats-grid-home {
        grid-template-columns: 1fr;
      }
    }

/* About GeM Services */
.gem-features-grid-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .gem-features-grid-home {
        grid-template-columns: 1fr;
    }
}

.feature-card-home {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left: 5px solid var(--secondary-amber);
}

.feature-card-home .icon-large {
    font-size: 3em;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.feature-card-home h3 {
    font-size: 1.5em;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature-card-home p {
    color: var(--text-secondary); 
}

/* Process Steps */
.process-steps-home {
    background-color: var(--background-light);
}

.steps-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card-home {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.step-card-home:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left: 5px solid var(--secondary-amber);
}

.step-icon-home {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step-card-home h3 {
    font-size: 1.4em;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.step-card-home p {
    color: var(--text-secondary); /
}

/* Why GeM Crucial Section  */
.why-gem-crucial-home {
    background-color: var(--bg-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-gem-crucial-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="10" fill="%23F3F4F6" fill-opacity="0.5"/></svg>') repeat;
    opacity: 0.7;
    z-index: 0;
}

.why-gem-crucial-home .container-home {
    position: relative;
    z-index: 1;
}

.why-gem-crucial-home .section-title-home {
    color: var(--primary-blue);
    margin-bottom: 50px;
    font-size: 2.8em;
    font-weight: 700;
}

.why-gem-crucial-home .section-title-home::after {
    background-color: var(--primary-green);
    width: 80px;
    height: 4px;
}

.gem-crucial-content-home {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.gem-crucial-text-home {
    flex: 1;
    min-width: 320px;
    padding-right: 20px;
}

.gem-crucial-text-home p {
    font-size: 1.15em;
    line-height: 1.8;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-weight: 700;
}

.gem-crucial-text-home ul {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0;
}

.gem-crucial-text-home ul li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--primary-blue);
    display: flex;
    align-items: flex-start;
    font-weight: 600;
}

.gem-crucial-text-home ul li i {
    color: var(--primary-green);
    margin-right: 15px;
    font-size: 1.3em;
    line-height: 1.4;
    flex-shrink: 0;
}

.gem-crucial-text-home .btn-primary {
    background-color: var(--primary-green);
    padding: 15px 35px;
    font-size: 1.1em;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3); 
    transition: all 0.3s ease;
}

.gem-crucial-text-home .btn-primary:hover {
    background-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(245, 158, 11, 0.4); 
}

.gem-crucial-image-home {
    flex: 1;
    min-width: 350px;
    text-align: center;
    position: relative;
}

.gem-crucial-image-home img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    transition: transform 0.4s ease-in-out;
}

.gem-crucial-image-home img:hover {
    transform: scale(1.03);
}

/* Footer Styles */
.main-footer {
    background-color: var(--bg-light); 
    color: var(--primary-blue);
    padding: 60px 0 30px;
    font-size: 0.95em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--accent-green);
    font-size: 1.2em;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--accent-green);
}

.footer-col p {
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.footer-col a {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary-blue);
}

.footer-col p i {
    margin-right: 10px;
    color: var(--accent-green);
}

.footer-bottom {
    border-top: 1px solid var(--border-color); 
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.copyright {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.social-icons a {
    color: var(--primary-blue);
    font-size: 1.3em;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-blue);
}

/* Media Queries for Responsiveness */
@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        padding-top: 0;
        overflow-y: visible;
        display: block !important;
    }

    .main-nav ul {
        flex-direction: row;
        justify-content: flex-end;
        padding: 0;
    }

    .main-nav ul li {
        margin-bottom: 0;
        margin-left: 20px;
    }

    .main-nav ul li a {
        color: var(--text-dark);
        padding: 8px 0;
        background-color: transparent;
    }

    .main-nav ul li a:hover {
        color: var(--primary-blue);
        background-color: transparent;
    }

    .main-nav .nav-register-btn {
        margin-top: 0;
        margin-left: 30px;
    }

    .main-nav .nav-register-btn .btn {
        width: auto;
        color: var(--text-light);
    }

    /* Dropdown for larger screens */
    .main-nav .has-dropdown {
        position: relative;
    }

    .main-nav .has-dropdown .dropdown-menu {
        display: none;
        position: absolute;
        /* top: 100%; */
        left: 0;
        background-color: var(--bg-white);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        min-width: 220px;
        z-index: 1000;
        padding: 5px 0;
        flex-direction: column;
        top: calc(100% - 1px);
        padding-top: 10px; 
        margin-top: -5px;
        padding-bottom: 10px;
    }

    .main-nav .has-dropdown:hover .dropdown-menu {
        display: flex;
    }

    .main-nav .has-dropdown .dropdown-menu li {
        margin-bottom: 0;
    }

    .main-nav .has-dropdown .dropdown-menu li a {
        padding: 10px 20px;
        color: var(--primary-blue);
    }

    .main-nav .has-dropdown .dropdown-menu li a:hover {
        background-color: var(--bg-light); 
        color: var(--accent-green);
    }

    .main-nav .contact-dropdown span {
        color: var(--primary-blue);
        padding: 10px 20px;
    }

    .main-nav .contact-dropdown span i {
        color: var(--accent-green);
    }

    .main-nav .has-dropdown .fa-chevron-down {
        transform: rotate(0deg);
    }
}

/* Adjust carousel caption for smaller screens */
@media (max-width: 768px) {
    .carousel-container {
        height: 350px;
    }

    .carousel-caption h2 {
        font-size: 2em;
    }

    .carousel-caption p {
        font-size: 1em;
    }

    .carousel-control {
        padding: 10px 5px;
        font-size: 1.2em;
    }

    .section-title-home {
        font-size: 2em;
    }

    .section-subtitle-home {
        font-size: 1em;
    }

    .gem-crucial-content-home {
        flex-direction: column;
    }

    .gem-crucial-image-home {
        order: -1;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .social-icons {
        margin-top: 20px;
    }

    .social-icons a {
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 250px;
    }

    .carousel-caption h2 {
        font-size: 1.5em;
    }

    .carousel-caption p {
        font-size: 0.9em;
        margin-bottom: 15px;
    }

    .btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .feature-card-home,
    .step-card-home {
        padding: 20px;
    }

    .feature-card-home h3,
    .step-card-home h3 {
        font-size: 1.3em;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}





























.container-other { 
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title-other { 
    font-size: 2.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title-other::after { 
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-amber);
    border-radius: 2px;
}

/* Main Content Area */
.main-content-other {
    padding-top: 0; 
}

/* Introduction Section */
.intro-section-other { 
    padding: 5rem 0;
    background-color: var(--bg-white);
    text-align: center;
}

.intro-text-other { 
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    color: var(--text-primary);
}

.highlight-box-other { 
    background-color: var(--bg-light);
    border-left: 5px solid var(--secondary-amber);
    padding: 2.5rem;
    margin-top: 3rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.highlight-box-other h3 { 
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.highlight-box-other p { 
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
}

/* How We Help Section */
.how-we-help-section-other { 
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.help-grid-other {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.help-card-other { 
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card-other:hover { 
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--secondary-amber);
}

.help-card-other .icon-wrapper-other { 
    background-color: var(--section-blue-bg);
    color: var(--primary-blue);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.help-card-other .icon-wrapper-other svg { 
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.help-card-other h3 {
    color: var(--primary-blue);
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.help-card-other p { 
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Why Choose Us Section */
.why-choose-us-section-other {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.choose-grid-other { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.choose-item-other { 
    display: flex;
    align-items: flex-start;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.choose-item-other:hover { 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid var(--secondary-amber);
     transform: translateY(-10px);
}

.choose-item-other .icon-wrapper-other {
    flex-shrink: 0;
    background-color: var(--primary-blue);
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.5rem;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.choose-item-other .icon-wrapper-other svg { 
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.choose-item-other .content-other h3 { 
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.choose-item-other .content-other p { 
    font-size: 1rem;
    color: var(--text-secondary);
}

/* GeM Brand Listing Process Section */
.process-section-other {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.process-steps-other { 
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    position: relative;
}

.process-steps-other::before { 
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--border-color);
    transform: translateX(-50%);
    z-index: 0;
}

.process-step-other { 
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.process-step-other:nth-child(even) { 
    flex-direction: row-reverse;
}

.process-step-other .step-number-other { 
    background-color: var(--primary-blue);
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    margin: 0 2rem; 
    border: 4px solid var(--bg-white);
}

.process-step-other:nth-child(even) .step-number-other { 
    margin: 0 2rem; 
}

.process-step-other .step-content-other { 
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    max-width: calc(50% - 70px); 
}
.process-step-other:nth-child(even) .step-content-other { 
    max-width: calc(50% - 70px);
}

.process-step-other .step-content-other h3 { 
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.process-step-other .step-content-other p { 
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Responsive adjustments for process steps */
@media (max-width: 768px) {
    .process-steps-other::before { 
        left: 30px; 
        transform: translateX(0);
    }
    .process-step-other { 
        flex-direction: row !important; 
        justify-content: flex-start;
    }
    .process-step-other .step-number-other { 
        margin: 0 1.5rem 0 0; 
    }
    .process-step-other .step-content-other { 
        max-width: calc(100% - 90px); 
    }
}

/* CTA Section */
.cta-section-other { 
    background: linear-gradient(90deg, var(--primary-blue) 0%, #3a5bb8 100%);
    color: var(--text-light);
    text-align: center;
    padding: 5rem 0;
}

.cta-title-other { 
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-subtitle-other {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cta-buttons-other .btn-primary { 
    display: inline-block;
    background-color: var(--secondary-amber);
    color: var(--text-dark); 
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-buttons-other .btn-primary:hover { 
    background-color: #e08e00; 
    transform: translateY(-3px);
}


/* FAQ Section */
.faq-section-other { 
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.faq-container-other { 
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-other { 
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.faq-question-other { 
    padding: 1.5rem 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question-other:hover { 
    background-color: #f9f9f9;
}

.faq-question-other svg { 
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.faq-item-other.active .faq-question-other svg { 
    transform: rotate(180deg);
}

.faq-answer-other { 
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #fcfdff;
    padding: 0 2rem;
}

.faq-item-other.active .faq-answer-other { 
    max-height: 200px; 
    padding: 1rem 2rem 2rem 2rem;
}

.faq-answer-other p { 
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .section-title-other {
        font-size: 2rem;
    }

    .help-card-other {
        padding: 2rem;
    }

    .choose-grid-other {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .intro-section-other,
    .how-we-help-section-other,
    .why-choose-us-section-other,
    .process-section-other,
    .cta-section-other,
    .faq-section-other {
        padding: 4rem 0;
    }

    .section-title-other {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .highlight-box-other {
        padding: 2rem;
    }

    .help-grid-other,
    .choose-grid-other {
        grid-template-columns: 1fr;
    }

    .process-steps-other::before {
        left: 20px;
    }

    .process-step-other {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-step-other:nth-child(even) {
        flex-direction: column;
    }

    .process-step-other .step-number-other {
        margin: 0 0 1rem 0;
        align-self: flex-start;
        left: -10px; 
    }

    .process-step-other .step-content-other {
        padding: 1.5rem;
        max-width: 100%;
        margin-left: 0;
    }
    .process-step-other:nth-child(even) .step-content-other {
        margin-right: 0;
        margin-left: 0;
    }
    .faq-question-other {
        padding: 1.2rem 1.5rem;
        font-size: 1.05rem;
    }
    .faq-answer-other {
        padding: 0 1.5rem;
    }
    .faq-item-other.active .faq-answer-other {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .cta-buttons-other .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section-title-other {
        font-size: 1.5rem;
    }

    .highlight-box-other h3 {
        font-size: 1.5rem;
    }

    .help-card-other h3 {
        font-size: 1.4rem;
    }

    .choose-item-other .content-other h3 {
        font-size: 1.3rem;
    }

    .process-step-other .step-number-other {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .process-step-other .step-content-other h3 {
        font-size: 1.4rem;
    }
}































/* Inquiry */
/* Modal Overlay Styles */
.modal-overlay {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    justify-content: center;
    align-items: center;
    -webkit-animation: fadeIn 0.3s ease-out;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: #fff;
    margin: 20% auto;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    width: 90%; 
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    -webkit-animation: slideInTop 0.4s ease-out;
    animation: slideInTop 0.4s ease-out;
}

.modal-content h2 {
    text-align: center;
    color: var(--secondary-amber);
    margin-bottom: 25px;
    font-size: 1.5em;
}

.close-button {
    color: var(--gray-dark);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.register-form .form-group {
    margin-bottom: 20px;
}

.register-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="tel"] {
    width: calc(100% - 20px); /* Adjust for padding */
    padding: 12px 10px;
    border: 1px solid #D3D3D3;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.register-form input[type="text"]:focus,
.register-form input[type="email"]:focus,
.register-form input[type="tel"]:focus {
    border-color: var(--text-muted);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
    outline: none;
}

.register-form .checkbox-group {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.register-form input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2); /* Make checkbox slightly larger */
}

.register-form .checkbox-group label {
    display: inline; /* Keep label next to checkbox */
    font-weight: 400;
    font-size: 0.95em;
    color: var(--gray-dark);
}

.register-form .btn-submit {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: var(--secondary-amber);
    color:var(--text-light);
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 25px;
}

.register-form .btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Animations */
@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@-webkit-keyframes slideInTop {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes slideInTop {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

body.no-scroll {
    overflow: hidden;
}

/* Modal Overlay */
.modal-overlay {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    justify-content: center; 
    align-items: center;  
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.modal-overlay.active {
    display: flex; 
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    position: relative; 

   
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1; 
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
}


/* Dropdown specific styles */
/* .main-nav .dropdown-menu {
    display: none; 
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.main-nav .dropdown-menu.active-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav ul li.active-dropdown > a .fa-chevron-down {
    transform: rotate(180deg);
} */



        /* Popup Overlay */
.popup-overlay {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0, 0, 0, 0.6); 
  justify-content: center;
  align-items: center;
}

/* Popup Content */
.popup-content {
  background-color: #fefefe;
  margin: auto;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  width: 90%;
  max-width: 450px;
  text-align: center;
  animation: fadeIn 0.3s ease-out;
}

/* Close Button */
.close-btn {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
  color: #333;
  text-decoration: none;
}

/* Form Styling */
.popup-content h3 {
  color: var(--secondary-amber);
  margin-bottom: 25px;
  font-size: 1.8em;
}

.form-group {
  margin-bottom: 18px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus {
  border-color: var(--primary-black);
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  accent-color: var(--secondary-amber); /* Colors the checkbox itself */
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  color: #333;
  cursor: pointer;
}

.popup-content button[type="submit"] {
  background-color: var(--secondary-amber);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.popup-content button[type="submit"]:hover {
  background-color:var(--accent-orange);
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}