@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.particle-section {
    height: 85vh; /* Adjusted height for content */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.5); /* Optional: adds dark overlay for text visibility */
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-out;
}

.hero-content .cta-group {
    margin-top: 20px;
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }
}
.hero-content .primary-cta,
.hero-content .secondary-cta {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    padding: 12px 30px;
    border: 2px solid #fff;
    border-radius: 30px;
    margin: 5px;
    transition: all 0.4s ease;
}

.hero-content .primary-cta:hover,
.hero-content .secondary-cta:hover {
    background: #007bff;
    border-color: #007bff;
}

.hero-slide:nth-child(1) {
    animation: slide1 16s infinite;
}

.hero-slide:nth-child(2) {
    animation: slide2 16s infinite;
}

.hero-slide:nth-child(3) {
    animation: slide3 16s infinite;
}

@keyframes slide1 {
    0%, 33.33% {
        opacity: 1;
    }
    33.34%, 100% {
        opacity: 0;
    }
}

@keyframes slide2 {
    0%, 33.33% {
        opacity: 0;
    }
    33.34%, 66.66% {
        opacity: 1;
    }
    66.67%, 100% {
        opacity: 0;
    }
}

@keyframes slide3 {
    0%, 66.66% {
        opacity: 0;
    }
    66.67%, 100% {
        opacity: 1;
    }
}
 .top-services {
      padding: 75px 20px;
        background: #F5F7FA url('../images/services.avif') no-repeat center center;
        background-size: 120%; /* Zoomed effect */
        background-attachment: fixed; /* Parallax scroll with website */
        position: relative;
        text-align: center;
        min-height: 600px; /* Ensures scrollability within section */
    }
    .top-services::before d{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(245, 247, 250, 0.8); /* Semi-transparent overlay */
        z-index: 1;
    }
    .top-services > * {
        position: relative;
        z-index: 2; /* Content above overlay */
    }
    .top-services h2 {
        font-size: 40px;
        color: #001f3f;
        margin-bottom: 20px;
        animation: fadeInUp 1s ease-out;
    }
    .top-services .intro {
        font-size: 18px;
        color: #001f3f;
        max-width: 800px;
        margin: 0 auto 40px;
        animation: fadeInUp 1.1s ease-out;
    }
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto 40px;
    }
    .service-card {
        background:white ;
        border:0.5px solid white;
        padding: 30px;
        border-radius: 12px;
        transition: all 0.4s ease;
        cursor:pointer;
        animation: fadeInUp 1.2s ease-out;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
    .service-card:nth-child(1) { animation-delay: 0.2s; }
    .service-card:nth-child(2) { animation-delay: 0.3s; }
    .service-card:nth-child(3) { animation-delay: 0.4s; }
    .service-card:nth-child(4) { animation-delay: 0.5s; }
    .service-card:nth-child(5) { animation-delay: 0.6s; }
    .service-card:hover {
        background: ;
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    .service-card svg {
        width: 50px;
        height: 50px;
        color: #001F3F;
        margin-bottom: 20px;
    }
    .service-card h3 {
        font-size: 20px;
        color: #000;
        margin-bottom: 15px;
    }
    .service-card p {
        font-size: 15px;
        color:#000;
    }
    .top-services .cta {
        display: inline-block;
        text-decoration: none;
        color: #001f3f;
        background: #fff;
        padding: 12px 40px;
        border-radius: 30px;
        border:2px solid #001f3f;
        font-weight: 700;
        font-size: 16px;
        transition: all 0.3s ease;
        animation: fadeInUp 1.3s ease-out;
    }
    .top-services .cta:hover {
        background: #001f3f;
        color:#fff;
        transform: scale(1.05);
    }
.who-we-serve {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}
.who-we-serve h2 {
    font-size: 40px;
    color: #1a3157;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out;
}
.serve-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}
.serve-item {
    width: 340px;
    padding: 30px;
    border: 2px solid #e0e7ff;
    border-radius: 12px;
    background: #fff;
    transition: all 0.4s ease;
    animation: fadeInUp 1.2s ease-out;
    animation-delay: calc(0.2s * var(--i));
}
.serve-item:nth-child(1) {
    --i: 1;
}
.serve-item:nth-child(2) {
    --i: 2;
}
.serve-item:nth-child(3) {
    --i: 3;
}
.serve-item:hover {
    border-color: #007bff;
    background: #f5f7fa;
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgb(0 0 0 / 0.1);
}
.serve-item svg {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.serve-item:hover svg {
    transform: rotate(10deg);
    animation: pulse 0.8s infinite;
}
.serve-item h3 {
    font-size: 22px;
    color: #1a3157;
    margin-bottom: 15px;
}
.serve-item p {
    font-size: 16px;
    color: #555;
}

  .case-study {
        padding: 80px 20px; /* Reduced padding for compactness */
        background: #FFFFFF;
        text-align: center;
    }
    .case-study-header h2 {
        font-size: 36px; /* Slightly smaller for balance */
        color: #1A3157;
        margin-bottom: 15px;
        animation: fadeInUp 1s ease-out;
    }
    .case-study-header p {
        font-size: 16px;
        color: #555555;
        max-width: 700px;
        margin: 0 auto 30px;
        animation: fadeInUp 1.1s ease-out;
    }
    .case-study-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); /* Slightly smaller cards */
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto 30px;
    }
    .case-study-card {
        background: #F5F7FA;
        padding: 25px; /* Reduced for less vertical space */
        border-radius: 12px;
        text-align: left;
        transition: all 0.4s ease;
        animation: fadeInUp 1.2s ease-out;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
    .case-study-card:nth-child(1) { animation-delay: 0.2s; }
    .case-study-card:nth-child(2) { animation-delay: 0.3s; }
    .case-study-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        background: #E0E7FF;
    }
    .case-study-card h3 {
        font-size: 22px; /* Smaller for compactness */
        color: #1A3157;
        margin-bottom: 15px;
    }
    .case-study-content h4 {
        font-size: 16px;
        color: #007BFF;
        margin: 10px 0 8px;
    }
    .case-study-content p {
        font-size: 14px; /* Reduced for brevity */
        color: #555555;
        margin-bottom: 8px;
    }
    .case-study-content ul {
        list-style: disc;
        padding-left: 18px;
        margin-bottom: 10px;
    }
    .case-study-content ul li {
        font-size: 14px;
        color: #555555;
        margin-bottom: 6px;
    }
    .case-study-cta {
        display: inline-block;
        text-decoration: none;
        color: #001f3f;
        padding: 9px 30px; /* Slightly smaller */
        border-radius: 30px;
        border:2px solid #001f3f;
        font-weight: 700;
        font-size: 15px;
        transition: all 0.3s ease;
        animation: fadeInUp 1.3s ease-out;
    }
    .case-study-cta:hover {
        background: #001f3f;
        color:#fff;
        transform: scale(1.05);
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .case-study {
            padding: 50px 15px;
        }
        .case-study-header h2 {
            font-size: 28px;
        }
        .case-study-header p {
            font-size: 14px;
        }
        .case-study-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .case-study-card {
            width: 90%;
            margin: 0 auto;
            padding: 20px;
        }
        .case-study-card h3 {
            font-size: 18px;
        }
        .case-study-content h4 {
            font-size: 14px;
        }
        .case-study-content p, .case-study-content ul li {
            font-size: 13px;
        }
        .case-study-cta {
            padding: 8px 25px;
            font-size: 13px;
        }
    }
.our-commitment {
    padding: 80px 20px;
    background: linear-gradient(135deg, #001f3f 0%, #3a6d8c 100%);
    color: #fff;
    text-align: center;
}
.our-commitment h2 {
    font-size: 40px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
}
.commitment-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-out;
}
.commitment-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}
.commitment-content .highlight {
    font-weight: 700;
    color: #e0e7ff;
    transition: color 0.3s ease;
}
.commitment-content:hover .highlight {
    color: #fff;
}
.commitment-content a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    padding: 12px 30px;
    border: 2px solid #fff;
    border-radius: 30px;
    margin-top: 20px;
    transition: all 0.4s ease;
}
.commitment-content a:hover {
    background: #fff;
    color: #1a3157;
}
.why-choose-us {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}
.section-title h2 {
    font-size: 30px;
    color: #1a3157;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out;
}
.section-title p {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    animation: fadeInUp 1.1s ease-out;
}
.choose-us-container {
    display: flex;
    justify-content: center;
}
.choose-us-grid {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    max-width: 1200px;
}
.choose-us-card {
    background: #f5f7fa;
    width: 320px;
    padding: 30px 25px;
    border-radius: 12px;
    transition: all 0.4s ease;
    animation: fadeInUp 1.2s ease-out;
    animation-delay: calc(0.2s * var(--i));
}
.choose-us-card:nth-child(1) {
    --i: 1;
}
.choose-us-card:nth-child(2) {
    --i: 2;
}
.choose-us-card:nth-child(3) {
    --i: 3;
}
.choose-us-card:hover {
    transform: translateY(-10px);
    background: #e0e7ff;
    box-shadow: 0 8px 25px rgb(0 0 0 / 0.1);
}
.choose-us-card svg {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.choose-us-card:hover svg {
    transform: scale(1.1);
    animation: pulse 0.8s infinite;
}
.choose-us-card h3 {
    font-size: 22px;
    color: #1a3157;
    margin-bottom: 15px;
}
.choose-us-card p {
    text-align: justify;
    color: #555;
}
@media (max-width: 768px) {
   
    .our-commitment h2,
    .why-choose-us h2 {
        font-size: 32px;
    }
    .commitment-content p,
    .section-title p {
        font-size: 16px;
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.about-us {
    padding: 60px 20px;
    background: #fff;
    max-width: 1200px;
    margin: 15px auto;
    display: flex;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.about-content {
    flex: 1;
    text-align: left;
}
.about-content h2 {
    font-size: 36px;
    color: #1a3157;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}
.about-content p {
    color: #555;
    line-height: 1.8;
     text-align: justify;
    margin-bottom: 20px;
    animation: fadeInUp 1.2s ease-out;
}
.about-content .highlight {
    color: #007bff;
    font-weight: 700;
    transition: color 0.3s ease;
}
.about-content:hover .highlight {
    color: #0056b3;
}
.about-content a {
    display: inline-block;
    text-decoration: none;
    color: #007bff;
    font-weight: 700;
    padding: 10px 25px;
    border: 2px solid #001f3f;
    border-radius: 25px;
    transition: all 0.4s ease;
    animation: fadeInUp 1.4s ease-out;
}
.about-content a:hover {
    background: #001f3f;
    color: #fff;
}
.about-image {
    flex: 1;
    max-width: 400px;
    animation: fadeInRight 1.2s ease-out;
}
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.1);
    transition: transform 0.4s ease;
}
.about-image img:hover {
    transform: scale(1.03);
}
@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
    }
    .about-content {
        text-align: center;
    }
    .about-content h2 {
        font-size: 28px;
    }
    .about-content p {
        font-size: 16px;
    }
    .about-image {
        max-width: 100%;
        margin-top: 20px;
    }
}

.insights-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.insights-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.insight-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.05);
    transition: transform 0.3s ease;
}
.insight-card:hover {
    transform: translateY(-10px);
}
.insight-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.insight-content {
    padding: 25px;
}
.insight-date {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.insight-title {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.25rem;
}
.insight-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}
.read-more {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}
.read-more:hover {
    gap: 10px;
}

 
.faq-section {
    padding: 5rem 2rem;
    background: var(--background);
}
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}
.faq-grid {
    display: grid;
    gap: 1.5rem;
}
.faq-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
}
.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}
.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary);
}
.faq-icon {
    color: var(--secondary);
    transition: 0.3s;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}



.contact-hero {
       position: relative;
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Aligns content to bottom */
    text-align: center;
    background: linear-gradient(135deg, #1A3157 0%, #1A3157 100%);
}

.contact-hero h1 {
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}
.contact-hero p {
     font-size: 18px;
    color: #F5F7FA;
    margin-bottom: 30px;
    animation: fadeInUp 1.1s ease-out;
}
.contact-hero a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    padding: 16px 40px;
    border: 2px solid #fff;
    border-radius: 50px;
    background: rgb(255 255 255 / 0.1);
    transition: all 0.4s ease;
    animation: fadeInUp 1.4s ease-out;
}
.contact-hero a:hover {
    background: #fff;
    color: #1a3157;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.2);
}
.contact-form {
    padding: 120px 20px;
    background: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}
.contact-form h2 {
    font-size: 44px;
    color: #1a3157;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    text-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
}
.contact-form h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #1a3157);
    border-radius: 2px;
}
.form-container {
    display: flex;
    max-width: 1100px;
    margin: 40px auto 0;
    background: #f5f7fa;
    padding: 50px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgb(0 0 0 / 0.15);
    animation: fadeInUp 1.2s ease-out;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.form-container::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgb(0 123 255 / 0.25) 0%, #fff0 70%);
    z-index: 0;
}
.form-left {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInLeft 1.4s ease-out;
}
.form-left img {
    width: 100%;
    max-width: 400px;
    height: auto;
    transition: transform 0.4s ease;
}
.form-left img:hover {
    transform: scale(1.05);
}
.form-right {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
}
.form-group {
    margin-bottom: 25px;
    text-align: left;
    position: relative;
    animation: fadeInRight 1.6s ease-out;
}
.form-group i {
    position: absolute;
    top: 50px;
    left: 15px;
    font-size: 18px;
    color: #007bff;
    transition: color 0.3s ease;
    z-index: 1;
}
.form-group input:focus + i,
.form-group textarea:focus + i,
.form-group select:focus + i {
    color: #0056b3;
}
.form-group label {
    display: block;
    font-size: 16px;
    color: #1a3157;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 2px solid #e0e7ff;
    border-radius: 10px;
    font-size: 16px;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #007bff;
    box-shadow: 0 0 10px rgb(0 123 255 / 0.3);
    outline: none;
    transform: scale(1.02);
}
.form-group textarea {
    height: 110px;
    resize: vertical;
}
.form-group select {
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg fill="%23007bff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 15px center;
    background-size: 18px;
}
.form-container button {
    background: linear-gradient(90deg, #007bff, #1a3157);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.4s ease, transform 0.4s ease;
    animation: fadeInUp 1.8s ease-out;
}
.form-container button:hover {
    background: linear-gradient(90deg, #0056b3, #1a3157);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.2);
}
.contact-details {
    padding: 25px 20px;
    background: #f5f7fa;
    text-align: center;
    position: relative;
    z-index: 1;
}
.contact-details h2 {
    font-size: 44px;
    color: #1a3157;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
}
.details-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}
.detail-item {
    width: 300px;
    padding: 35px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInUp 1.2s ease-out;
    animation-delay: calc(0.2s * var(--i));
}
.detail-item:nth-child(1) {
    --i: 1;
}
.detail-item:nth-child(2) {
    --i: 2;
}
.detail-item:nth-child(3) {
    --i: 3;
}
.detail-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgb(0 123 255 / 0.2);
}
.detail-item i {
    font-size: 44px;
    color: #007bff;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}
.detail-item:hover i {
    transform: scale(1.1);
    animation: pulse 0.8s infinite;
}
.detail-item h3 {
    font-size: 24px;
    color: #1a3157;
    margin-bottom: 10px;
}
.detail-item p {
    font-size: 16px;
    color: #555;
}
.contact-map {
    padding: 120px 20px;
    background: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}
.contact-map h2 {
    font-size: 44px;
    color: #1a3157;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
}
.map-container {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.15);
    transition: transform 0.4s ease;
}
.map-container iframe:hover {
    transform: scale(1.02);
}
.cta-banner {
    padding: 50px 20px;
    background: linear-gradient(135deg, #007bff 0%, #1a3157 100%);
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgb(255 255 255 / 0.2) 0%, #fff0 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}
.cta-banner h2 {
    font-size: 44px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 6px rgb(0 0 0 / 0.3);
}
.cta-banner p {
    font-size: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    z-index: 1;
}
.cta-banner a {
    display: inline-block;
    text-decoration: none;
    color: #1a3157;
    font-weight: 700;
    padding: 16px 40px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: all 0.4s ease;
    animation: fadeInUp 1.4s ease-out;
    position: relative;
    z-index: 1;
}
.cta-banner a:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    box-shadow: 0 8px 25px rgb(0 0 0 / 0.2);
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .contact-hero,
    .contact-form,
    .contact-details,
    .contact-map,
    .cta-banner {
        padding: 80px 15px;
    }
    .contact-hero h1,
    .contact-form h2,
    .contact-details h2,
    .contact-map h2,
    .cta-banner h2 {
        font-size: 36px;
    }
    .contact-hero p,
    .contact-form p,
    .contact-details p,
    .contact-map p,
    .cta-banner p {
        font-size: 18px;
    }
    .form-container,
    .details-grid {
        flex-direction: column;
        align-items: center;
    }
    .form-left,
    .form-right,
    .detail-item {
        width: 90%;
        margin: 0 auto 20px;
    }
    .form-container {
        padding: 30px;
        border-radius: 30px;
    }
    .form-left img {
        max-width: 100%;
    }
    .map-container img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .particle-section {
        height: 70vh;
    }
    .particle {
        width: 1.5px;
        height: 1.5px;
    }
}
