/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Sora', 'Poppins', sans-serif;
   background-color: #DDE6F5;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Animated Background Canvas */
#backgroundCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, #0a0f2c 0%, #050816 100%);
}

/* Custom Cursor */
#customCursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    width: 100%;
}

/* Section Spacing */
section {
    padding: clamp(60px, 8vw, 120px) 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #a0a9c0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #012840;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link.active,
.nav-link:hover {
    color: #667eea;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.nav-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-btn-mobile-item {
    display: none;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
       background: linear-gradient(43deg, rgba(102, 126, 234, 0.1) 26%, rgba(84, 69, 160, 0.1) 100%);
    overflow: hidden;
}

.contact-hero .hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.breadcrumb {
    font-size: 1rem;
   color: #012840;
    margin-bottom: 2rem;
    z-index: 1;
}

.breadcrumb a {
    color: #012840;
    text-decoration: none;
}

.separator {
    margin: 0 1rem;
    opacity: 0.5;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 800;
    margin-bottom: 3.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
 color: #012840;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #a0a9c0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #a0a9c0;
}

/* Contact Form Section */
.contact-section {
    position: relative;
    background: white;
    overflow: hidden;
    background-image: url("./images/bg-shape.png");
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgb(10 15 44 / 95%) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    z-index: 2;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgb(10 15 44 / 95%);
}

.contact-info p {
    color: rgb(10 15 44 / 95%);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    list-style: none;
    margin-bottom: 2rem;
}
.contact-icon-warrper{
     width: 80px;
    height: 80px;
    background: #012840;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);

}
.contact-details li {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    gap: 20px;
}

.contact-details li:hover {
    transform: translateX(10px);
}

.contact-details i {
    font-size: 2.1rem;
    color: linear-gradient(135deg, #042461, #5AB2FF);;
}

.contact-details strong {
    color: rgb(10 15 44 / 95%);
    font-weight: 600;
}

.contact-details span {
    color: rgb(10 15 44 / 95%);
}

.contact-form {
     background: #012840;
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    /* background: rgba(255, 255, 255, 0.1); */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a9c0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #042461, #5AB2FF);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Sora', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Map Section */
.map-section {
    position: relative;
    background-color: white;
    overflow: hidden;
    padding: 0px 0;
 
}

.map-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 300px;
    height: 300px;
    /* background: radial-gradient(circle, #667eea 0%, transparent 70%); */
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.map-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
        color: rgb(10 15 44 / 95%);
}

.location-info {
    margin-bottom: 3rem;
}

.location-details {
    /* background: rgba(255, 255, 255, 0.05); */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgb(10 15 44 / 95%);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 2;
}

.location-details h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgb(10 15 44 / 95%);
}

.location-details p {
     color: rgb(10 15 44 / 95%);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.location-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #0a0f2c 0%, #1a1d3a 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
    border-color: rgba(102, 126, 234, 0.3);
}

.highlight-item i {
    color: #667eea;
    font-size: 1.2rem;
}

.highlight-item span {
    color: #a0a9c0;
    font-weight: 500;
    font-size: 0.95rem;
}

.map-container {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.map-container iframe {
    width: 100%;
    height: 560px;
    border: none;
    filter: grayscale(0.1) contrast(1.1) brightness(0.9) hue-rotate(210deg);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0) contrast(1.2) brightness(1) hue-rotate(0deg);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(10, 15, 44, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
    z-index: 10;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.map-container:hover .map-overlay {
    background: linear-gradient(135deg, rgba(60, 15, 88, 255), #042461);;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.office-marker {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.office-marker i {
    color: #ffffff;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.marker-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.marker-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Footer */
.footer {
 background-color: white;
    padding: 80px 0 0;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    /* position: relative; */
    overflow: hidden;
    background-image: url('./images/Bg-2.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    background-position: bottom center;
}

.footer::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    /* background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%); */
    border-radius: 50%;
    top: 50%;
    left: 80%;
    transform: translateY(-50%);
    animation: float 8s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about h3 {
    color: #012840;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-about p {
    color: #012840;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #012840;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #012840;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #012840;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: linear-gradient(135deg, rgba(60, 15, 88, 255), #042461);;
}

.footer-bottom {
   text-align: center;
    padding: 16px 0;
    border-top: 1px solid rgba(99, 102, 241, 0.15);
    background: #012840;
    /* backdrop-filter: blur(9px); */
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.6); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 15, 44, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-btn {
        display: none;
    }
    
    .nav-btn-mobile-item {
        display: block;
        margin-top: 2rem;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat {
        min-width: 140px;
        padding: 1.5rem 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Map Section Mobile */
    .location-details {
        padding: 2rem 1.5rem;
    }
    
    .location-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .map-overlay {
        position: static;
        opacity: 1;
        transform: none;
        margin-bottom: 1rem;
        border-radius: 15px 15px 0 0;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat {
        min-width: 120px;
        padding: 1.2rem 0.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    .title-line{
       font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
}

/* Performance Optimizations and Final Touches */

