/* Scroll Animations - Floating Effect */
.float-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.float-up.visible {
    opacity: 1;
    transform: translateY(0);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.slide-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-down {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.6s ease;
}

.slide-in-down.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-10deg);
    transition: all 0.6s ease;
}

.rotate-in.visible {
    opacity: 1;
    transform: rotate(0);
}

/* Stagger animation delays */
[data-stagger] {
    transition-delay: 0ms;
}

[data-stagger].visible {
    transition-delay: 0ms;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #667eea);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Enhanced hover effects with animation */
.enhanced-service-card:hover,
.service-card:hover,
.feature-card:hover {
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

#fibnet-logo {
    width: 50px;
    height: 50px;
    margin-right: 0.5rem;
}





ul.fibnet-nav {

    gap: 1rem;

    margin-left: auto;

}





.fibnet-nav .nav-link {

    color: #333333;

    font-weight: 500;

    transition: color 0.3s ease;

}

.fibnet-nav .nav-link:hover,
.fibnet-nav .nav-link.active {

    color: #2563eb !important;

    font-weight: 600;

}





/* Hero section styles */



.hero {

    height: 50vh;

    width: 100vw;

    position: relative;

    margin: 0;

    padding: 0;

    display: flex;

    align-items: flex-start;

    justify-content: center;

    padding-top: 10vh;

    overflow: hidden;

    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);

    background-size: 400% 400%;

    animation: gradientShift 15s ease infinite;

}



@keyframes gradientShift {

    0% { background-position: 0% 50%; }

    50% { background-position: 100% 50%; }

    100% { background-position: 0% 50%; }

}



.hero::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3), transparent 50%),

                radial-gradient(circle at 80% 50%, rgba(255, 119, 198, 0.3), transparent 50%),

                radial-gradient(circle at 50% 20%, rgba(255, 219, 98, 0.2), transparent 50%);

    animation: floatAnimation 20s ease-in-out infinite;

    z-index: 1;

}



@keyframes floatAnimation {

    0%, 100% { transform: translateY(0px) rotate(0deg); }

    33% { transform: translateY(-20px) rotate(1deg); }

    66% { transform: translateY(20px) rotate(-1deg); }

}



.hero-content {

    color: #ffffff;

    position: relative;

    z-index: 2;

    filter: brightness(1.2);

    text-align: center;

    animation: fadeInUp 1.5s ease-out;

}



@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



.fibnet {

    color: #ffffff;

    font-weight: bold;

    filter: brightness(1.3) drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.4));

    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);

    animation: glowPulse 2s ease-in-out infinite alternate;

}



@keyframes glowPulse {

    from { 

        filter: brightness(1.3) drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.4));

        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);

    }

    to { 

        filter: brightness(1.5) drop-shadow(0 0 30px rgba(255, 255, 255, 1)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.6));

        text-shadow: 0 0 50px rgba(255, 255, 255, 0.8);

    }

}



.hero h1.Fibnettitle {

    text-align: center;

    font-size: clamp(42px, 6vw, 96px);

    letter-spacing: 2px;

    font-family: 'Google Sans', sans-serif;

    margin: 2rem 1rem;

    font-size: clamp(24px, 5vw, 64px);

    font-weight: 700;

    line-height: 1.2;

    word-wrap: break-word;

    overflow-wrap: break-word;

    color: #ffffff;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);

    animation: titleFloat 3s ease-in-out infinite;

}



@keyframes titleFloat {

    0%, 100% { transform: translateY(0px); }

    50% { transform: translateY(-5px); }

}



/* Extra large screens (1400px and up) */

@media (min-width: 1400px) {

    .hero h1.Fibnettitle {

        font-size: clamp(32px, 4vw, 72px);

        letter-spacing: 2px;

        margin: 3rem 0;

    }

}



/* Large screens (1200px to 1399px) */

@media (min-width: 1200px) and (max-width: 1399px) {

    .hero h1.Fibnettitle {

        font-size: clamp(30px, 4.5vw, 68px);

        letter-spacing: 1.5px;

    }

}



/* Medium screens (768px to 1199px) */

@media (min-width: 768px) and (max-width: 1199px) {

    .hero h1.Fibnettitle {

        font-size: clamp(28px, 5vw, 64px);

        letter-spacing: 1px;

        margin: 2rem 0.5rem;

    }

}



/* Small screens (576px to 767px) */

@media (min-width: 576px) and (max-width: 767px) {

    .hero h1.Fibnettitle {

        font-size: clamp(26px, 6vw, 48px);

        letter-spacing: 0.5px;

        margin: 1.5rem 0.5rem;

        line-height: 1.3;

    }

}



/* Extra small screens (575px and below) */

@media (max-width: 575px) {

    .hero h1.Fibnettitle {

        font-size: clamp(22px, 7vw, 42px);

        letter-spacing: 0.3px;

        margin: 1rem 0.5rem;

        line-height: 1.4;

        padding: 0 1rem;

    }

}



#slogan {

    text-align: center;

    letter-spacing: 1px;

    font-family: 'Google Sans', sans-serif;

    margin: 2rem 1rem;

    font-size: clamp(16px, 2vw, 24px);

    font-weight: 400;

    line-height: 1.4;

    word-wrap: break-word;

    overflow-wrap: break-word;

    color: #ffffff;

    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);

    animation: fadeInUp 1.5s ease-out 0.5s both;

}



#services-title {

    text-align: center;

    font-family: 'Google Sans', sans-serif;

    margin: 2rem 2em;

    margin-bottom: 0.5rem !important;

    font-size: clamp(24px, 3.5vw, 36px);

    font-weight: bold;

    line-height: 1.2;

    text-underline-offset: 4px;

    color: #002fff;

}

#why-choose-title {

    text-align: center;

    font-family: 'Arial', sans-serif;

    margin: 2rem 2em;

    margin-bottom: 0.5rem !important;

    font-size: clamp(35px, 5vw, 50px);

    font-weight: bold;

    line-height: 1.2;

    text-underline-offset: 4px;

    color: #e74c3c;

}



#h2underline {

    border-bottom: 3px solid #000000;

    width: 50%;

    align-items: center;

    margin: 0 auto;

    margin-top: -10px;

}



#services-container {

    background-color: #ffffff;

    padding: 2rem 0;

    font-family: 'Roboto Condensed', sans-serif;

    font-weight: 500;

    font-size: clamp(16px, 2vw, 24px);

    line-height: 1.4;

    color: #333333;

}



#service-hr {

    border-bottom: 2px solid #002fff;

    width: 50%;

    align-items: center;

    margin: 0 auto;

    margin-top: -10px;

}



.services-img {

    width: 100%;

    height: auto;

    margin-top: 1rem;

    

}



#service-1-small, #service-2-small, #service-3-small {

    font-size: clamp(14px, 1.5vw, 18px);

    line-height: 1.4;

    color: #e65d5d;

    margin-top: 1rem;

    font-weight: 500;

    text-align: center;

    font-family: 'Roboto Condensed', sans-serif;

}



#service-1, #service-2, #service-3 {

    transition: transform 0.3s ease;

}



#service-1:hover, #service-2:hover, #service-3:hover {

    transform: scale(1.05);

}



#services1-img, #services2-img, #services3-img {

    border-radius: 10px;

    outline: dotted;

    outline-color: #002fff;

    outline-width: 2px;

}



#service-1, #service-2, #service-3 {

    margin-bottom: 2rem;

    padding: 1rem;

    border-radius: 10px;

    outline: solid;

    outline-color: #ff0000;

    outline-width: 2px;

}

/* About Us Section Styles */

#about-us-image {

    text-align: left;

}

#about-us-content {

    text-align: left;

    padding-left: 2rem;

}

#about-us-content h3 {

    font-family: 'Google Sans', sans-serif;

    font-size: clamp(28px, 4vw, 40px);

    font-weight: bold;

    color: #002fff;

    margin-bottom: 1rem;

}

#about-us-hr {

    border-bottom: 2px solid #002fff;

    width: 80px;

    margin: 0 0 1.5rem 0;

    text-align: left;

}

#about-us-1-small {

    font-size: clamp(16px, 2vw, 20px);

    line-height: 1.6;

    color: #333333;

    margin-bottom: 2rem;

    font-weight: 400;

    font-family: 'Roboto Condensed', sans-serif;

}

.about-us-img {

    width: 100%;

    height: auto;

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.about-us-img:hover {

    transform: scale(1.05);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

}

#read-more-button {

    background-color: #002fff;

    color: #ffffff;

    border: none;

    border-radius: 50px;

    padding: 0.75rem 2.5rem;

    font-size: 16px;

    font-weight: 600;

    font-family: 'Roboto Condensed', sans-serif;

    transition: all 0.3s ease;

    text-transform: uppercase;

    letter-spacing: 1px;

}

#read-more-button:hover {

    background-color: #001a88;

    transform: translateY(-2px);

    box-shadow: 0 8px 25px rgba(0, 47, 255, 0.3);

    color: #ffffff;

}

#read-more-button a {

    color: #ffffff !important;

    text-decoration: none !important;

    font-weight: bold;

    font-size: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

}

/* Responsive About Us Section */

@media (max-width: 768px) {

    #about-us-content {

        text-align: center;

        padding-left: 0;

        margin-top: 2rem;

    }

    #about-us-image {

        text-align: center;

    }

    #about-us-hr {

        margin: 0 auto 1.5rem auto;

    }

    #read-more-button {

        margin: 0 auto;

        display: block;

    }

}



/* Mobile navigation dropdown styles */

@media (max-width: 991px) {

    .navbar-collapse {

        position: absolute;

        top: 70px;

        right: 15px;

        border-top: 1px solid #dee2e6 !important;

        border-bottom: 1px solid #dee2e6 !important;

        border-right: 1px solid #002fff !important;

        border-radius: 8px !important;

        background-color: #ffffff;

        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

        z-index: 1000;

        min-width: 200px;

    }

    

    .navbar-nav {

        text-align: right !important;

        padding: 0.5rem 0;

    }

    

    .navbar-nav .nav-item {

        border-bottom: 1px solid #dee2e6;

        width: 100%;

    }

    

    .navbar-nav .nav-item:last-child {

        border-bottom: none;

    }

    

    .navbar-nav .nav-link {

        padding: 0.75rem 1rem !important;

        color: #333333 !important;

        transition: background-color 0.3s ease;

    }

    

    .navbar-nav .nav-link:hover {

        background-color: #f8f9fa;

        color: #002fff !important;

    }

}



#more-service-button {

    margin-top: 2rem;

    width: 250px;

    height: 50px;

    border-radius: 10px;

    background-color: #002fff;

    transition: background-color 0.3s ease;

    text-align: center;

    line-height: 50px;

    font-weight: 500;

    font-size: 16px;

    font-family: 'Roboto Condensed', sans-serif;

    color: #000000;

}



#more-service-button:hover {

    background-color: #001a88;

}

#more-service-button a {

    color: #ffffff !important;

    text-decoration: none !important;

    font-weight: bold;

    font-size: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

}

/* Footer Styles - Modern Minimalist */
.footer-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 4rem 0 2rem 0;
    margin-top: 3rem;
    font-family: 'Google Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.footer-section .container-fluid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand {
    text-align: left;
}

.footer-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 500px;
    font-weight: 400;
}

.footer-links-section {
    text-align: center;
}

.footer-links-section h4 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-radius: 8px;
    display: block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact {
    text-align: right;
}

.footer-contact h4 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    justify-content: flex-end;
}

.contact-item strong {
    color: #ffffff;
    margin-right: 0.75rem;
    font-weight: 600;
    min-width: 70px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-section .container-fluid {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
        order: 1;
    }
    
    .footer-links-section {
        text-align: center;
        order: 2;
    }
    
    .footer-contact {
        text-align: center;
        order: 3;
    }
    
    .footer-text {
        text-align: center !important;
        margin: 0 auto;
        width: 100%;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .contact-item strong {
        margin-right: 0;
        margin-bottom: 0;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-text {
        font-size: 0.95rem;
        text-align: center !important;
        margin: 0 auto;
        width: 100%;
    }
    
    .footer-links-section h4,
    .footer-contact h4 {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .social-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer-brand {
        text-align: center !important;
    }
}

/* Moving Modules Section */
.moving-modules-section {
    background: linear-gradient(to right, rgba(102, 126, 234, 0.1), rgba(255, 255, 255, 0), rgba(102, 126, 234, 0.1));
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
}

.modules-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.modules-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

.module {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    margin: 0 1rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    min-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.moving-modules-section.boxy .module {
    border-radius: 10px;
    border: 2px solid #e5e7eb;
}

.moving-modules-section.boxy {
    background: #007bff;
}

.module:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.module-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blue-bg {
    background: linear-gradient(135deg, #667eea, #4a5fc1);
}

.purple-bg {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.white-bg {
    background: white;
    border: 2px solid #e5e7eb;
}

.green-bg {
    background: linear-gradient(135deg, #10b981, #059669);
}

.orange-bg {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.red-bg {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.teal-bg {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.bsnl-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.module-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    line-height: 1.2;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design for Moving Modules */
@media (max-width: 768px) {
    .moving-modules-section {
        padding: 2rem 0;
    }
    
    .module {
        padding: 1rem 1.5rem;
        margin: 0 0.5rem;
        min-width: 200px;
    }
    
    .module-icon {
        width: 40px;
        height: 40px;
    }
    
    .module-text {
        font-size: 0.9rem;
    }
    
    .modules-track {
        animation-duration: 15s;
    }
}

@media (max-width: 480px) {
    .module {
        padding: 0.8rem 1rem;
        margin: 0 0.3rem;
        min-width: 180px;
    }
    
    .module-icon {
        width: 35px;
        height: 35px;
    }
    
    .module-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .module-text {
        font-size: 0.8rem;
    }
    
    .modules-track {
        animation-duration: 12s;
    }
}

/* Floating Social Media Icons */
.floating-social {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.whatsapp-icon {
    background-color: #25D366;
}

.phone-icon {
    background-color: #007bff;
}

.floating-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-icon svg {
    width: 24px;
    height: 24px;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin-top: 3rem;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    z-index: 1;
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.contact-form-section h3 {
    color: #002fff;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Google Sans', sans-serif;
}

.contact-form-section p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-family: 'Roboto Condensed', sans-serif;
}

.contact-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Roboto Condensed', sans-serif;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.contact-form .form-control:focus {
    border-color: #002fff;
    box-shadow: 0 0 0 0.2rem rgba(0, 47, 255, 0.25);
    background-color: white;
}

.contact-form .form-control:hover {
    border-color: #002fff;
    background-color: white;
}

.btn-submit {
    background: linear-gradient(135deg, #002fff, #001a88);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #001a88, #001166);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 47, 255, 0.3);
    color: white;
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-loading {
    color: white !important;
}

.form-message {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .contact-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .contact-form-section h3 {
        font-size: 2rem;
    }
    
    .btn-submit {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 2rem 0;
    }
    
    .contact-form-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .contact-form-section h3 {
        font-size: 1.75rem;
    }
    
    .contact-form-section p {
        font-size: 1rem;
    }
    
    .btn-submit {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Responsive Floating Icons */
@media (max-width: 768px) {
    .floating-social {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
    }
    
    .floating-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .floating-social {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
    }
    
    .floating-icon svg {
        width: 18px;
        height: 18px;
    }
}

