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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #010923;
}

.top-marquee-bar {
    width: 100%;
    background: #007BFF;
    color: #fff;
    padding: 0.05rem 0;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2000;
    box-shadow: 0 2px 8px rgba(228, 0, 43, 0.07);
}

.top-marquee {
    color: #fff;
    font-size: 0.96rem;
    font-weight: 600;
    width: 100%;
    white-space: nowrap;
    outline: none;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    height: 32px;
    flex-wrap: nowrap;
}

.top-marquee span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.top-marquee p {
    display: inline;
    margin: 0;
    white-space: nowrap;
}

.top-apply-btn {
    background: #fff;
    color: #e4002b;
    font-weight: 700;
    padding: 0.15rem 0.7rem;
    border-radius: 12px;
    font-size: 0.88rem;
    margin-left: 0.7rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(228, 0, 43, 0.10);
    border: none;
    white-space: nowrap;
}

.top-apply-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: black;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.collaboration-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.tab-btn.active {
    background: #007BFF;
    border-color: #007BFF;
    color: white;
}

.collaboration-form {
    display: none;
}

.collaboration-form.active {
    display: block;
}

.feature-actions {
    margin-top: 1rem;
}

.feature-actions .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
    .collaboration-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, #007BFF 0%, #0056B3 100%);
    font-weight: 700;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient1 {
    background: yellowgreen;
    font-weight: 700;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white {
    color: white !important;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.btn-primary {
    background-color: #007BFF;
    color: white;
}

.btn-primary:hover {
    background-color: #010923;
    transform: translateY(-2px);
    border: 2px solid #afb4b9;
}

.btn-secondary {
    background-color: white;
    color: #007BFF;
}

.btn-secondary:hover {
    background: #007BFF;
    color: white;
    border: 2px solid #afb4b9;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid #afb4b9;
}

.btn-outline:hover {
    background-color: #007BFF;
    color: white;
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid #afb4b9;
}

.btn-outline-white:hover {
    background-color: white;
    color: #007BFF;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Navigation */
.navbar {
    background: transparent;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
    box-shadow: 0 2px 8px rgba(228, 0, 43, 0.07);
    border-radius: 10px;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 5;
}

.logo-img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    animation: spinY 5s linear infinite;
    transform-style: preserve-3d;
}

.logo:hover .logo-img {
    transform: rotate(5deg) scale(1.05);
}

@keyframes spinY {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.logo-text {
    font-size: 1.50rem;
    font-weight: 700;
    background: linear-gradient(135deg, #007BFF 0%, #0056B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover .logo-text {
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: 1px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #007BFF;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #007BFF;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.758);
    cursor: pointer;
}

.mobile-nav {
    background-color: #010923;
    position: fixed;
    top: 4rem;
    right: 0;
    height: calc(100vh - 4rem);
    width: 260px;
    background-image: linear-gradient(rgba(205, 212, 232, 0.92), rgba(141, 157, 213, 0.62)), url('../assets/images/nav_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1rem 1rem 1rem;
    z-index: 2000;
    transition: transform 0.3s ease;
}


.mobile-nav.active {
    display: flex;
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav .nav-link {
    padding: 0.5rem 0;
    color: black;
}

.mobile-nav .nav-link.active {
    color: #007BFF;
    background-color: rgba(0, 123, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #010923;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.dropdown-menu1 a {
    padding: 0.5rem 1rem;
    color: black;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
}

.dropdown-item1 {
    display: block;
    padding: 0.5rem 1rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.dropdown-item1:hover {
    background-color: #007BFF;
    color: white;
    border-radius: 0.4rem;
}


.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.45rem 0.6rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #010923;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #007BFF;
    color: white;
    border-radius: 0.4rem;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

.mobile-dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    background-color: #120938;
    margin: 0.5rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #010923;
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-item:hover {
    background-color: #e9ecef;
    color: #007BFF;
}


/* Team Page Styles */
.team-section {
    padding: 5rem 0;
}

.team-section.bg-light {
    background-color: #010923;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: #120938;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out;
}

.team-card:hover {
    box-shadow: 0 8px 32px 0 rgba(0, 123, 255, 0.15);
    border: 1px solid #007BFF;
    transform: translateY(-5px);
}

.team-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.9);
    color: #007BFF;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #007BFF;
    color: white;
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.875rem;
    color: yellowgreen;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-description {
    color: white;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #f0f8ff;
    color: #007BFF;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.values-section {
    padding: 5rem 0;
    background-color: #010923;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 2.5rem;
    color: #007BFF;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.value-description {
    color: #666;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff 0%, rgba(0, 123, 255, 0.05) 50%, #fff 100%);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    position: relative;
    background-image: linear-gradient(rgba(1, 9, 35), rgba(1, 9, 35, 0)), url('../assets/images/1background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    padding-top: 7rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 40, 0.5);
    filter: blur(8px);
    z-index: 2;
}

.hero>.container,
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: yellowgreen;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.1);
    animation: pulse 3s infinite;
}

.circle-1 {
    width: 5rem;
    height: 5rem;
    top: 5rem;
    left: 2.5rem;
}

.circle-2 {
    width: 8rem;
    height: 8rem;
    bottom: 5rem;
    right: 2.5rem;
    animation-delay: 1s;
}

/* Page Hero */
.page-hero {
    position: relative;
    background: url('https://i.postimg.cc/zXC1ns5K/background.jpg') center center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    z-index: 1;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.page-hero .container,
.page-hero .hero-content,
.page-hero h1,
.page-hero p {
    position: relative;
    z-index: 3;
}

.page-hero .container {
    width: 100%;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-description {
    font-size: 1.25rem;
    color: white;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1 1 0;
}

.hero-image {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.book-call-section {
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .hero-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .hero-image {
        justify-content: center;
        width: 100%;
    }

    .hero-image img {
        max-width: 100%;
    }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.section-description {
    font-size: 1.125rem;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #010923;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeIn 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007BFF, #00D4FF, #007BFF);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 123, 255, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 123, 255, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.feature-icon {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon::before {
    transform: translate(-50%, -50%) scale(1.2);
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 212, 255, 0.2));
}

.feature-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #007BFF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 123, 255, 0.5));
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: white;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    background: linear-gradient(135deg, #ffffff, #007BFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.info-detail a {
    text-decoration: none;
    color: #007BFF;
}

.feature-card:hover .feature-description {
    color: rgba(255, 255, 255, 0.95);
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #007BFF 0%, #0056B3 100%);
}

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

.stat-item {
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background-color: #010923;
}

.cta.gradient-bg {
    background: linear-gradient(135deg, #007BFF 0%, #0056B3 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 2rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta.gradient-bg .cta-title {
    color: white;
}

.cta-description {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta.gradient-bg .cta-description {
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* Quote Modal Styles */
#quoteModal.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

#quoteModal.modal.show {
    display: flex;
}

#quoteModal .modal-content {
    background: #010923;
    padding: 2rem;
    border: 2px solid #007BFF;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    animation: modalFadeIn 0.2s;
}

@keyframes modalFadeIn {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#quoteModal h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

#quoteModal .form-group {
    margin-bottom: 1rem;
}

#quoteModal label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    color: white;
}

#quoteModal input,
#quoteModal select,
#quoteModal textarea {
    width: 100%;
    padding: 8px 10px;
    border: 2px solid #007BFF;
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 0;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

#quoteModal input:focus,
#quoteModal select:focus,
#quoteModal textarea:focus {
    border-color: #007bff;
    outline: none;
}

#quoteModal textarea {
    resize: vertical;
    min-height: 60px;
}

#quoteModal .modal-btn-group {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 0.5rem;
}

@media (max-width: 500px) {
    #quoteModal .modal-content {
        padding: 1rem;
        max-width: 98vw;
    }
}


/* Services Page */
.services-section {
    padding: 5rem 0;
    background-color: #010923;
    background-image: linear-gradient(rgba(1, 9, 35, 0.92), rgba(1, 9, 35, 0.92)), url('../assets/images/background2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.service-icon {
    text-align: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 3rem;
    color: #007BFF;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    text-align: center;
}

.service-description {
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 0.875rem;
}

.service-features i {
    color: #28a745;
    flex-shrink: 0;
}

.service-action-btns {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 4px 10px !important;
    font-size: 0.95em !important;
    border-radius: 0.35rem !important;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.12), rgba(0, 212, 255, 0.12));
    color: #e6f2ff;
    border: 1.5px solid rgba(0, 123, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
    padding: 0.75rem 1.5rem !important; /* match Get Quote button height */
    min-height: auto;
    font-size: 0.875rem !important;
}

.call-btn i {
    margin-right: 6px;
    color: #00d4ff;
    transition: transform 0.25s ease, color 0.25s ease;
}

.call-btn:hover {
    background: linear-gradient(135deg, #007BFF, #00D4FF);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.25);
}

.call-btn:hover i {
    color: #fff;
    animation: phoneRing 0.6s ease-in-out;
}

.call-btn:focus-visible {
    outline: 3px solid rgba(0, 123, 255, 0.5);
    outline-offset: 2px;
}

@keyframes phoneRing {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(12deg) scale(1.05); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(-12deg) scale(1.05); }
    100% { transform: rotate(0deg) scale(1); }
}

.service-price {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #007BFF;
    margin-bottom: 1.5rem;
}

/* FAQ Accordion Styles */
.faq-section {
    margin-top: 2.5rem;
    background: #010923;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 16px rgba(1, 9, 35, 0.06);
}

.faq-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #010923;
    border-radius: 0.5rem;
    border: 1px solid #007BFF;
    box-shadow: 0 1px 6px rgba(1, 9, 35, 0.04);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item.active {
    box-shadow: 0 4px 16px rgba(1, 9, 35, 0.10);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 1.1rem 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #0c052c;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #010923;
    color: white;
    padding: 0 1.2rem;
    font-size: 1rem;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

.faq-answer a {
    color: yellowgreen;
    text-decoration: none;
}

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

.faq-question {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-arrow {
    display: inline-block;
    margin-left: 1rem;
    width: .5rem;
    height: .5rem;
    border-right: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-arrow {
    transform: rotate(-135deg);
}

/* Review Section Styles */
.review-section {
    padding: 4rem 0;
    background: #010923;
}

.review-carousel {
    position: relative;
    width: 100%;
}

.review-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.review-grid {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
    max-width: min(1000px, 95vw);
    margin-left: auto;
    margin-right: auto;
    min-height: clamp(250px, 40vw, 400px);
    padding: 0 1rem;
}

.review-card {
    background: white;
    border: none;
    border-radius: clamp(0.8rem, 2vw, 1.5rem);
    padding: clamp(1rem, 3vw, 2.5rem);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: clamp(280px, 50vw, 600px);
    max-width: 85vw;
    transform-origin: center;
    min-height: clamp(180px, 30vw, 280px);
}

.review-card:nth-child(1) {
    z-index: 5;
    transform: translateX(0);
    opacity: 1;
}

.review-card:nth-child(2) {
    z-index: 4;
    transform: translateX(clamp(-60px, -15vw, -120px));
    opacity: 0.8;
}

.review-card:nth-child(3) {
    z-index: 3;
    transform: translateX(clamp(60px, 15vw, 120px));
    opacity: 0.8;
}

.review-card:nth-child(4) {
    z-index: 2;
    transform: translateX(clamp(-100px, -25vw, -200px));
    opacity: 0.6;
}

.review-card:nth-child(5) {
    z-index: 1;
    transform: translateX(clamp(100px, 25vw, 200px));
    opacity: 0.6;
}

.review-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: clamp(0.8rem, 2vw, 1.5rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
}

.client-photo {
    flex-shrink: 0;
}

.client-avatar {
    width: clamp(45px, 8vw, 70px);
    height: clamp(45px, 8vw, 70px);
    border-radius: 50%;
    object-fit: cover;
    border: none;
    transition: all 0.3s ease;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: clamp(0.95rem, 2.5vw, 1.3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: clamp(0.2rem, 0.5vw, 0.3rem);
    line-height: 1.2;
}

.review-designation {
    font-size: clamp(0.7rem, 1.8vw, 0.9rem);
    color: #666;
    font-weight: 500;
    margin-bottom: clamp(0.4rem, 1vw, 0.8rem);
}

.review-stars {
    display: flex;
    gap: clamp(0.1rem, 0.3vw, 0.2rem);
    margin-bottom: 0;
}

.review-stars i {
    color: #FFD700;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
}

.review-text {
    color: #333;
    line-height: 1.7;
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 400;
    position: relative;
    padding-left: clamp(0.8rem, 2vw, 1.5rem);
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: clamp(-0.3rem, -0.5vw, -0.2rem);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #007BFF;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-text::after {
    content: '"';
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #007BFF;
    font-family: Georgia, serif;
    margin-left: clamp(0.1rem, 0.3vw, 0.2rem);
}

.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: clamp(35px, 6vw, 50px);
    height: clamp(35px, 6vw, 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.review-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.review-nav i {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    color: #007BFF;
}

.review-nav-prev {
    left: clamp(5px, 2vw, 15px);
}

.review-nav-next {
    right: clamp(5px, 2vw, 15px);
}




/* Mission Section */
.mission {
    padding: 5rem 0;
    background-color: #010923;
}

.mission-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
}

.mission-content {
    animation: fadeIn 0.6s ease-out;
}

.mission-text {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-content.center {
    text-align: center;
    margin-bottom: 2rem;
}

.mission-grid .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

.vision-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.gradient-bg {
    background: #120938;
    color: white;
}

.vision-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.vision-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.vision-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.vision-icon i {
    font-size: 2.5rem;
    color: #007BFF;
    opacity: 0.9;
}


/* Founder Section Styles */
.founder-section {
    background: #120938;
    padding: 100px 0 100px 0;
}

.founder-section .hero-content {
    margin-bottom: 80px;
}

.founder-section {
    background: #120938;
    padding: 100px 0 100px 0;
}

.founder-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.founder-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 2.5rem;
    align-items: flex-start;
    width: 100%;
}

.founder-image {
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #007BFF;
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.10);
    background: #e3e9f7;
}

.founder-details {
    flex: 1 1 300px;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: yellowgreen;
}

.founder-description {
    font-size: 1rem;
    color: white;
    margin-bottom: 1.2rem;
}

.founder-socials {
    display: flex;
    gap: 1rem;
}

.founder-socials .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f4fa;
    color: #007BFF;
    font-size: 1.3rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.07);
    text-decoration: none;
}

.founder-socials .social-link:hover {
    background: #007BFF;
    color: #fff;
    transform: translateY(-3px) scale(1.08);
}

@media (max-width: 700px) {
    .founder-content {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
    }

    .founder-image {
        margin-bottom: 1.2rem;
    }

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

    .founder-socials {
        justify-content: center;
    }
}


/* Values Section */
.values {
    padding: 5rem 0;
    background-color: #010923;
}

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

.value-card {
    background: #120938;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out;
}

.value-card:hover {
    box-shadow: 0 8px 32px 0 rgba(0, 123, 255, 0.15);
    border: 1px solid #007BFF;
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: #007BFF;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.value-description {
    color: white;
    line-height: 1.6;
}

/* Why Join Our Internship? section */
.why-join-section,
.what-you-get-section,
.how-it-works-section {
    padding: 40px 0;
    background: #010923;
}


/* Programs Section */
.programs-section {
    padding: 5rem 0;
    background-color: #010923;
}

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

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.program-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.program-badge {
    background-color: #007BFF;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.program-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: yellowgreen;
    font-size: 0.875rem;
}

.meta-item i {
    color: #007BFF;
}

.program-description {
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-skills h4,
.program-benefits h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background-color: #120938;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    border: 1px solid #e5e5e5;
}

.program-benefits ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.program-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 0.875rem;
}

.program-benefits i {
    color: #28a745;
    flex-shrink: 0;
}

/* What You'll Get Section*/
.what-you-get-section {
    background: #010923;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.what-you-get-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
}

.what-you-get-list li {
    background: #120938;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    color: white;
    padding: 18px 28px;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    max-width: 340px;
    margin-bottom: 0;
    transition: box-shadow 0.2s;
}

.what-you-get-list li:hover {
    box-shadow: 0 8px 32px 0 rgba(0, 123, 255, 0.15);
    border: 1px solid #007BFF;
    transform: translateY(-5px);
}

.what-you-get-list li::before {
    content: '';
    display: none;
}


/* Our Process (Timeline) */
.our-process {
    padding: 6rem 0;
    background: #010923;
    background-image: linear-gradient(rgba(1, 9, 35), rgba(255, 255, 255, 0)), url('../assets/images/1background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.process-timeline {
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #a855f7, #10b981);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f7, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    position: relative;
}

.step-content {
    flex: 1;
    padding: 0 2rem;
    max-width: 400px;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.step-content p {
    color: #a1a1aa;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .process-timeline::before {
        left: 30px;
        transform: none;
    }

    .process-step,
    .process-step:nth-child(even),
    .process-step:nth-child(odd) {
        flex-direction: row;
        align-items: flex-start;
    }

    .step-content {
        padding: 0 1rem 0 2rem;
        max-width: none;
    }
}


/* Projects Section */
.projects-section {
    padding: 2rem 0 2rem 0;
    min-height: 100vh;
    background: #010923;
}

.clients-projects-title {
    font-size: 2rem;
    font-weight: 500;
    padding: 18px 28px;
    color: #fff;
    margin-top: 2rem;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    background: transparent;
    border-radius: 1.5rem;
    padding: 2rem 1rem;
}

.project-card {
    background: #120938;
    border-radius: 1rem;
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    transition: transform 0.25s cubic-bezier(.4, 2, .6, 1), box-shadow 0.25s;
    border: 1.5px solid rgba(0, 123, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    box-shadow: 0 8px 32px 0 rgba(0, 123, 255, 0.15);
    border: 1px solid #007BFF;
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    max-width: 320px;
    border-radius: .8rem;
    margin-bottom: 1rem;
    object-fit: cover;
    aspect-ratio: 16/9;
    box-shadow: 0 2px 12px 0 rgba(0, 123, 255, 0.10);
    background: #e0e6f7;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.project-subtitle {
    font-size: 0.98rem;
    color: #8fa2c9;
    margin-bottom: 0.25rem;
}

.project-view-btn {
    margin-top: 1rem;
    display: inline-block;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.project-card p {
    color: #e0e6f7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .projects-section {
        padding: 2rem 0 1rem 0;
    }

    .projects-grid {
        padding: 1rem 0.25rem;
        gap: 1.25rem;
    }

    .project-card {
        padding: 1.5rem 0.75rem 1.25rem 0.75rem;
    }

    .project-card h3 {
        font-size: 1.15rem;
    }

    .project-card p {
        font-size: 0.95rem;
    }

    .project-card .btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
}



/* Contact Page */
.contact-info-section {
    padding: 5rem 0;
    background-color: #010923;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: #120938;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out;
}

.contact-info-card a {
    color: #007BFF;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.contact-info-card:hover {
    box-shadow: 0 8px 32px 0 rgba(0, 123, 255, 0.15);
    border: 1px solid #007BFF;
    transform: translateY(-5px);
}

.info-icon {
    margin-bottom: 1rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: #007BFF;
}

.info-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.info-detail {
    font-size: 1rem;
    font-weight: 600;
    color: #007BFF;
    margin-bottom: 0.5rem;
}

.info-description {
    font-size: 0.875rem;
    color: white;
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0056b3;
}


/* Contact Form */
.contact-form-section {
    padding: 0 0 5rem 0;
    background-color: #010923;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
    padding: 3rem;
    border: 2px solid #007BFF;
    border-radius: .5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.6s ease-out;
}

.form-container:hover {
    box-shadow: 0 8px 32px 0 rgba(0, 123, 255, 0.15);
    transform: translateY(-5px);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.form-description {
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: white;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #010923;
    padding: 0.75rem 1rem;
    border: 1px solid #007BFF;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 8px 32px 0 rgba(0, 123, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: black;
    color: white;
    font-weight: 600;
    padding: 3rem 0 1rem;
    background-image: linear-gradient(rgb(1, 9, 35), rgba(40, 37, 37, 0.92)), url('../assets/images/background1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@keyframes colorShift {
    0% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(180deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.footer-logo-img {
    width: 6.5rem;
    height: 6.5rem;
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
    animation: colorShift 5s linear infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: white;
    font-size: 0.875rem;
}

.footer-tagline1 {
    color: #007BFF;
    text-decoration: none;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #007BFF;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007BFF;
}

.footer-links a i {
    color: #007BFF;
    transition: color 0.3s;
}

.footer-legal-link {
    color: #007bff;
    text-decoration: none;
    margin-left: 8px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 0.875rem;
}

.contact-info i {
    color: #007BFF;
    width: 1rem;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: white;
    font-size: 0.875rem;
}

.footer-social-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.footer-social-links .social-link {
    color: #007BFF;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social-links .social-link:hover {
    background: #007BFF;
    color: white;
}



/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeRight {
    animation: fadeRight 0.6s ease-out;
}

@keyframes fadeLeft {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav.active {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .container {
        padding: 0 15px;
    }

    .form-container {
        padding: 2rem 1.5rem;
        margin: 0 15px;
    }
}

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

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .form-container {
        padding: 1rem 0.5rem;
        margin: 0 2px;
        max-width: 100%;
    }

    .btn,
    .btn-primary,
    .btn-outline {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        width: 100%;
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 0;
    }

    .footer-links li {
        width: 100%;
        text-align: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .btn,
    .btn-primary,
    .btn-outline {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }
}


/* Utility Classes */
.d-none {
    display: none !important;
}

.d-block {
    display: block;
}

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

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}