/* =================================== */
/*  Main Css File */
/* =================================== */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Top Bar Styles */
.topbar {
    background-color: #0097B2;
    padding: 15px 0;
    color: white;
    position: relative;
    z-index: 1001;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar .contact-info a {
    color: white;
    text-decoration: none;
    margin-right: 30px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.topbar .contact-info a i {
    margin-right: 10px;
    font-size: 18px;
}

.topbar .contact-info a:hover {
    color: #D5A34D;
    transform: translateY(-2px);
}

.topbar .social-links a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.topbar .social-links a.hover-effect:hover {
    transform: translateY(-3px);
    color: #D5A34D;
}

/* Main Header Styles */
.main-header {
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 15px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .logo {
    display: flex;
    align-items: center;
}

.main-header .logo-img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.main-header .logo:hover .logo-img {
    transform: scale(1.02);
}

.main-header .nav-menu {
    display: flex;
    align-items: center;
}

.main-header .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-header .nav-links li {
    margin: 0 22px;
}

.main-header .nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 5px;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.main-header .nav-links a:hover {
    color: #D5A34D;
    transform: translateY(-2px);
}

.main-header .nav-links a.active {
    color: #D5A34D;
    font-weight: 600;
}

/* Menu Toggle for Mobile */
.main-header .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.main-header .menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #0097B2;
    margin: 3px 0;
    border-radius: 3px;
    transition: all 0.4s ease;
}

.main-header .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.main-header .menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.main-header .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .main-header .menu-toggle {
        display: block;
    }

    .main-header .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .main-header .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .main-header .nav-links li {
        margin: 15px 0;
    }

    .main-header .nav-links a {
        font-size: 18px;
        display: block;
        padding: 12px 5px;
    }

    .topbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .topbar .contact-info {
        text-align: center;
        display: flex;
        gap: 20px;
    }

    .topbar .contact-info a {
        display: flex;
        margin: 10px 0;
        font-size: 14px;
    }

    .topbar .social-links {
        margin-top: 10px;
        display: none !important;
    }

    .main-header .logo-img {
        height: 50px;
    }

     .main-header .container {
        padding: 0 20px;
    }
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.main-header.scroll-up {
    animation: slideDown 0.5s ease forwards;
}

/* Additional Hover Effects */
.nav-links a::after {
    display: none;
}

.main-header .container::after {
    display: none;
}



.hero {
    position: relative;
    background: #f8f9fa;
    padding: 80px 0;
    overflow: hidden;

    .hero-content {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    
    /* Hero Text Content */
    .hero-text-content {
        position: relative;
    }
    
    .hero-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(0, 151, 178, 0.1);
        color: #0097B2;
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 24px;
    }
    
    .hero-badge i {
        margin-right: 8px;
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 48px;
        line-height: 1.2;
        color: #1a1a1a;
        margin-bottom: 24px;
        font-weight: 700;
    }
    
    .hero-title .highlight {
        display: block;
        color: #0097B2;
        font-size: 0.9em;
    }
    
    .hero-features {
        display: flex;
        gap: 24px;
        margin-bottom: 24px;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #555;
    }
    
    .feature-item i {
        color: #D5A34D;
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 18px;
        line-height: 1.6;
        color: #666;
        margin-bottom: 32px;
        max-width: 90%;
    }
    
    .hero-cta {
        display: flex;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .btn-primary, .btn-secondary {
        display: inline-flex;
        align-items: center;
        padding: 16px 32px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .btn-primary {
        background:#D5A34D;
        color: white;
        box-shadow: 0 4px 6px rgba(0, 151, 178, 0.1);
    }
    
    .btn-secondary {
        background: white;
        color: #0097B2;
        border: 2px solid #0097B2;
    }
    
    .btn-primary:hover, .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 151, 178, 0.15);
    }
    
    .btn-primary i, .btn-secondary i {
        margin-right: 8px;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding-top: 32px;
        border-top: 1px solid #eee;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        display: block;
        font-size: 32px;
        font-weight: 700;
        color: #0097B2;
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: 14px;
        color: #666;
    }
    
    /* Hero Image Content */
    .hero-image-content {
        position: relative;
    }
    
    .main-image {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .hero-img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }
    
    .main-image:hover .hero-img {
        transform: scale(1.03);
    }
    
    .trust-badge {
        position: absolute;
        bottom: -20px;
        right: 20px;
        background: white;
        padding: 16px 24px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .company-logo {
        height: 40px;
        width: auto;
    }
    
    .badge-text {
        display: flex;
        flex-direction: column;
    }
    
    .badge-title {
        font-weight: 600;
        color: #1a1a1a;
        font-size: 14px;
    }
    
    .badge-subtitle {
        color: #666;
        font-size: 12px;
    }
    
    /* Responsive Design */
    @media screen and (max-width: 1024px) {
        .hero-title {
            font-size: 40px;
        }
    
        .hero-description {
            font-size: 16px;
        }
    }
    
    @media screen and (max-width: 768px) {
        .hero {
            padding: 60px 0;
        }
    
        .hero-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    
        .hero-text-content {
            text-align: center;
        }
    
        .hero-features {
            justify-content: center;
        }
    
        .hero-description {
            margin: 0 auto 32px;
        }
    
        .hero-cta {
            justify-content: center;
        }
    
        .hero-stats {
            max-width: 500px;
            margin: 0 auto;
        }
    
        .trust-badge {
            position: relative;
            bottom: 0;
            right: 0;
            margin-top: 20px;
            justify-content: center;
        }
    }
    
    @media screen and (max-width: 480px) {
        .hero {
            padding: 40px 0;
        }
    
        .hero-title {
            font-size: 32px;
        }
    
        .hero-features {
            flex-direction: column;
            align-items: center;
        }
    
        .hero-cta {
            flex-direction: column;
        }
    
        .hero-stats {
            grid-template-columns: 1fr;
            gap: 16px;
        }
    
        .btn-primary, .btn-secondary {
            width: 100%;
            justify-content: center;
        }
    }
    
    /* Decorative Elements */
    .decorative-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 4;
    }
    
    .plane-path {
        position: absolute;
        top: 20%;
        left: -20%;
        animation: flyPlane 15s linear infinite;
    }
    
    .plane-path i {
        font-size: 2.5rem;
        color: #D5A34D;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        transform: rotate(45deg);
    }
    
    .compass-element {
        position: absolute;
        bottom: 10%;
        right: 10%;
        animation: rotate 10s linear infinite;
    }
    
    .compass-element i {
        font-size: 3rem;
        color: rgba(255, 255, 255, 0.15);
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }
    
    @keyframes flyPlane {
        0% {
            transform: translate(-100%, 0) rotate(0deg);
        }
        100% {
            transform: translate(400%, 100%) rotate(0deg);
        }
    }
    
    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    } 
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, #0097B2 12%, transparent 12.5%, transparent 87%, #0097B2 87.5%, #0097B2),
        linear-gradient(150deg, #0097B2 12%, transparent 12.5%, transparent 87%, #0097B2 87.5%, #0097B2),
        linear-gradient(30deg, #0097B2 12%, transparent 12.5%, transparent 87%, #0097B2 87.5%, #0097B2),
        linear-gradient(150deg, #0097B2 12%, transparent 12.5%, transparent 87%, #0097B2 87.5%, #0097B2),
        linear-gradient(60deg, #D5A34D77 25%, transparent 25.5%, transparent 75%, #D5A34D77 75%, #D5A34D77);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0;
    opacity: 0.03;
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0097B2 0%, #006B7F 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    opacity: 0.03;
    z-index: 1;
}

/* Add floating elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #0097B2, #D5A34D);
    opacity: 0.05;
}

.floating-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: float 15s infinite ease-in-out;
}

.floating-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation: float 20s infinite ease-in-out reverse;
}

.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#0097B2 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, 20px) rotate(5deg);
    }
    50% {
        transform: translate(0, 40px) rotate(0deg);
    }
    75% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

/* DGCA Info Section */
.dgca-info {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.info-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Image Container Styles */
.info-image-container {
    flex: 1;
    position: relative;
    padding: 20px;
}

.image-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    z-index: 2;
}

.image-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.main-image {
    grid-row: span 2;
    height: 500px;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.small-image {
    height: 240px;
    transform: translateX(20px);
    opacity: 0;
}

.small-image:nth-child(2) {
    animation: slideInRight 0.8s ease forwards 0.2s;
}

.small-image:nth-child(3) {
    animation: slideInRight 0.8s ease forwards 0.4s;
}

.image-item:hover img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: linear-gradient(135deg, #D5A34D 0%, #E8C385 100%);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(213, 163, 77, 0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: floatIn 0.6s ease forwards 0.6s;
    z-index: 3;
}

.badge-content {
    text-align: center;
    color: white;
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px dashed #0097B2;
    border-radius: 50%;
    top: -50px;
    left: -50px;
    opacity: 0.1;
    animation: rotate 30s linear infinite;
}

.decoration-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        #D5A34D 0px,
        #D5A34D 1px,
        transparent 1px,
        transparent 15px
    );
    opacity: 0.05;
}

/* Content Styles */
.info-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.content-header {
    margin-bottom: 40px;
}

.info-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 151, 178, 0.1);
    color: #0097B2;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.content-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.info-subtitle {
    font-size: 18px;
    color: #666;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.info-description {
    margin-bottom: 40px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

.info-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.8s;
}

.requirement-item:nth-child(2) { animation-delay: 1s; }
.requirement-item:nth-child(3) { animation-delay: 1.2s; }
.requirement-item:nth-child(4) { animation-delay: 1.4s; }

.requirement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 151, 178, 0.1) 0%, rgba(213, 163, 77, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.requirement-icon i {
    font-size: 24px;
    background: linear-gradient(135deg, #0097B2 0%, #D5A34D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.requirement-text h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.requirement-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.info-cta {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 1.6s;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #0097B2 0%, #D5A34D 100%);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 151, 178, 0.2);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .info-flex {
        flex-direction: column;
    }

    .main-image {
        height: 400px;
    }

    .small-image {
        height: 200px;
    }
}

@media screen and (max-width: 768px) {
    .dgca-info {
        padding: 60px 0;
    }

    .content-header h2 {
        font-size: 32px;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .main-image {
        height: 300px;
        grid-row: auto;
    }

    .small-image {
        height: 200px;
    }

    .floating-badge {
        bottom: auto;
        top: 20px;
        left: 20px;
    }
}

@media screen and (max-width: 480px) {
    .content-header h2 {
        font-size: 28px;
    }

    .requirement-icon {
        width: 40px;
        height: 40px;
    }

    .requirement-icon i {
        font-size: 20px;
    }
}

/* DGCA Section Styles */
.dgca-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.dgca-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(0, 151, 178, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(213, 163, 77, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.dgca-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Image Side Styles */
.dgca-image-side {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/5;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.6s ease;
}

.image-container:hover .main-image {
    transform: scale(1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 151, 178, 0.2) 0%,
        rgba(213, 163, 77, 0.2) 100%
    );
}

.floating-card {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(30px);
    opacity: 0;
    animation: slideIn 0.6s ease forwards 0.6s;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0097B2 0%, #D5A34D 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 24px;
    color: white;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.card-number {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    background: linear-gradient(135deg, #0097B2 0%, #D5A34D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Content Side Styles */
.dgca-content {
    position: relative;
}

.content-header {
    margin-bottom: 50px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 151, 178, 0.1);
    color: #0097B2;
    border-radius: 50px;
    margin-bottom: 25px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.header-badge i {
    font-size: 16px;
}

.content-header h2 {
    font-size: 44px;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.header-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.requirements-section {
    margin-bottom: 40px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

.section-title i {
    font-size: 24px;
    color: #D5A34D;
}

.section-title span {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.requirement-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.8s;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.requirement-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 1s;
}

.requirement-card:nth-child(2) { animation-delay: 1.2s; }
.requirement-card:nth-child(3) { animation-delay: 1.4s; }
.requirement-card:nth-child(4) { animation-delay: 1.6s; }

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(0, 151, 178, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 20px;
    color: #0097B2;
}

.card-header h3 {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.requirement-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding-left: 60px;
}

.action-area {
    margin-top: 50px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 1.8s;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #D5A34D;
    color: white;
    border-radius: 15px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 151, 178, 0.2);
}

.support-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.support-text i {
    color: #D5A34D;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .dgca-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .image-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .floating-card {
        right: 0;
    }

    .dgca-content {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .dgca-section {
        padding: 80px 0;
    }

    .content-header h2 {
        font-size: 36px;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .requirement-card {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    .content-header h2 {
        font-size: 28px;
    }

    .header-desc {
        font-size: 16px;
    }

    .floating-card {
        right: 50%;
        transform: translateX(50%);
    }

    .primary-button {
        width: 100%;
        justify-content: center;
    }
}

/* Eligibility Section */
.eligibility-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Floating Background Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.element-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #0097B2, transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.element-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #D5A34D, transparent);
    bottom: 10%;
    right: -50px;
    animation-delay: -5s;
}

.element-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #0097B2, #D5A34D);
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

/* Section Intro */
.section-intro {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 151, 178, 0.1);
    color: #0097B2;
    border-radius: 50px;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.intro-badge i {
    font-size: 16px;
}

.intro-title {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.intro-text {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

/* Categories Section */
.categories-wrapper {
    margin-bottom: 80px;
}

.categories-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    perspective: 1000px;
    height: 200px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.category-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-front {
    background: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-back {
    background: #D5A34D;
    color: white;
    transform: rotateY(180deg);
}

.card-front i {
    font-size: 36px;
    color: #0097B2;
    margin-bottom: 15px;
}

.card-front h3 {
    font-size: 18px;
    color: #1a1a1a;
}

.card-back p {
    font-size: 14px;
    line-height: 1.6;
}

/* Criteria Section */
.criteria-container {
    max-width: 1000px;
    margin: 0 auto;
}

.criteria-header {
    text-align: center;
    margin-bottom: 50px;
}

.header-icon {
    width: 80px;
    height: 80px;
    background:  #D5A34D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.header-icon i {
    font-size: 36px;
    color: white;
}

.criteria-header h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.criteria-header p {
    font-size: 16px;
    color: #666;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.criteria-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.criteria-item:hover {
    transform: translateY(-5px);
}

.criteria-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 151, 178, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.criteria-icon i {
    font-size: 24px;
    color: #0097B2;
}

.criteria-content h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.criteria-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 151, 178, 0.1) 0%, rgba(213, 163, 77, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.criteria-item:hover .hover-effect {
    opacity: 1;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(5deg);
    }
    50% {
        transform: translate(0, -20px) rotate(0deg);
    }
    75% {
        transform: translate(-10px, -10px) rotate(-5deg);
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .categories-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 992px) {
    .intro-title {
        font-size: 36px;
    }

    .criteria-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .eligibility-section {
        padding: 80px 0;
    }

    .categories-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-title {
        font-size: 32px;
    }

    .intro-text {
        font-size: 16px;
    }

    .criteria-item {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .categories-container {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 180px;
    }

    .intro-title {
        font-size: 28px;
    }

    .criteria-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .criteria-icon {
        margin: 0 auto 15px;
    }
}

/* Application Guide Section */
.application-guide {
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.guide-header {
    text-align: center;
    margin-bottom: 60px;
}

.guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 151, 178, 0.1);
    color: #0097B2;
    border-radius: 50px;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.guide-badge i {
    font-size: 18px;
}

.guide-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.guide-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

/* Timeline Styles */
.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 40px 20px;
}

.timeline-progress {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #0097B2 0%, #D5A34D 100%);
    top: 0;
}

.timeline-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% + 60px);
    background: rgba(0, 151, 178, 0.1);
    z-index: -1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #0097B2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 151, 178, 0.2);
}

.step-content {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.step-header h3 {
    font-size: 24px;
    color: #1a1a1a;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 151, 178, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 28px;
    color: #0097B2;
}

.step-details {
    color: #666;
}

.detail-list {
    list-style: none;
    margin-top: 15px;
}

.detail-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.detail-list i {
    color: #D5A34D;
}

.portal-link {
    color: #0097B2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.portal-link:hover {
    color: #D5A34D;
}

/* Important Note Styles */
.important-note {
    background: rgba(213, 163, 77, 0.1);
    border-radius: 15px;
    padding: 20px;
}

.note-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #D5A34D;
    font-weight: 600;
}

.note-list {
    list-style: none;
}

.note-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.note-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D5A34D;
}

/* Document Grid Styles */
.document-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.document-item {
    background: rgba(0, 151, 178, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.document-item:hover {
    background: rgba(0, 151, 178, 0.1);
    transform: translateY(-3px);
}

.document-item i {
    font-size: 24px;
    color: #0097B2;
    margin-bottom: 10px;
}

.document-item span {
    font-size: 14px;
    color: #666;
}

.document-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
    margin-top: 15px;
}

.document-note i {
    color: #D5A34D;
}

/* Tracking Info Styles */
.tracking-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tracking-step {
    text-align: center;
}

.tracking-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 151, 178, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.tracking-icon i {
    font-size: 24px;
    color: #0097B2;
}

.tracking-text h4 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.tracking-text p {
    font-size: 14px;
    color: #666;
}

/* Common Mistakes Section */
.common-mistakes {
    max-width: 900px;
    margin: 0 auto 80px;
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.mistakes-header {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.mistakes-header i {
    font-size: 30px;
    color: #D5A34D;
}

.mistakes-header h3 {
    font-size: 28px;
    color: #1a1a1a;
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mistake-card {
    background: rgba(213, 163, 77, 0.05);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.mistake-card:hover {
    background: rgba(213, 163, 77, 0.1);
    transform: translateY(-3px);
}

.mistake-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mistake-icon i {
    font-size: 20px;
    color: #D5A34D;
}

.mistake-card p {
    font-size: 15px;
    color: #666;
}

/* Timeline Table Styles */
.timeline-table {
    max-width: 800px;
    margin: 0 auto 80px;
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.timeline-table h3 {
    text-align: center;
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: rgba(0, 151, 178, 0.05);
    color: #1a1a1a;
    font-weight: 600;
}

td {
    color: #666;
}

tr:hover td {
    background: rgba(0, 151, 178, 0.02);
}

/* Help Section Styles */
.help-section {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0097B2, #D5A34D);
    border-radius: 30px;
    padding: 60px;
    color: white;
    text-align: center;
}

.help-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.help-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.service-item i {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-item span {
    font-size: 14px;
    display: block;
}

.help-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #0097B2;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.help-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .timeline-step {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-step:nth-child(even) {
        flex-direction: column;
    }

    .step-number {
        margin: 0 auto;
    }

    .document-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tracking-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .guide-header h2 {
        font-size: 32px;
    }

    .mistakes-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .help-section {
        padding: 40px 20px;
    }
}

@media screen and (max-width: 480px) {
    .document-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .timeline-table {
        padding: 20px;
    }

    .common-mistakes {
        padding: 30px 20px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.testimonials .section-header{
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 40px;
    height: 40px;
    background:  #D5A34D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    color: white;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    min-height: 100px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(0, 151, 178, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 20px;
    color: #0097B2;
}

.author-info h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: #666;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.faq-section .section-header{
    text-align: center;
}
.faq-grid { 
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 151, 178, 0.02);
}

.faq-question i {
    font-size: 18px;
    color: #0097B2;
    transition: transform 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    color: #1a1a1a;
    flex: 1;
}

.faq-answer {
    padding: 0 30px;
    height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background: rgba(0, 151, 178, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    height: auto;
    opacity: 1;
}

/* Contact Section */
.contact-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin: 20px 0;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(0, 151, 178, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0097B2;
}


@media (max-width: 768px) {
   
    .contact-section .container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}


.item-content h4 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.item-content a, .item-content span {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.item-content a:hover {
    color: #0097B2;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0097B2;
    outline: none;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background:#D5A34D;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 151, 178, 0.2);
}

/* Footer */
.footer {
    background:#0097B2;
    padding: 80px 0 0;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 20px;
    background-color: white; 
    padding: 10px 20px;
    border-radius: 20px;
}

.footer-logo p {
    color: b;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.link-group h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #0097B2;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-group ul a:hover {
    color:#D5A34D;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    padding: 4px;
}

.social-link:hover {
    background: #0097B2;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: white;
}

.footer-extra-links {
    display: flex;
    gap: 30px;
}

.footer-extra-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-extra-links a:hover {
    color:#D5A34D;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-extra-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .footer-extra-links {
        flex-direction: column;
        gap: 15px;
    }
}

