/* ===============================
   ROOT VARIABLES
   =============================== */
:root {
    --primary: #2563eb;
    --secondary: #1e40af;
    --dark: #0f172a;
    --light: #f1f5f9;
    --transition: all 0.3s ease;
}

/* ===============================
   GLOBAL STYLES
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--light) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--secondary);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 300%;
    height: 300%;
}

.btn-primary:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* ===============================
   TOPBAR
   =============================== */
.top-shape {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.top-shape a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.top-shape a:hover {
    opacity: 0.8;
}

/* ===============================
   NAVBAR
   =============================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: all 0.4s ease;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
}

.logo-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    transition: var(--transition);
    background: transparent; 
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-icon i {
    font-size: 1.75rem;
    color: white;
}

.brand-title {
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    color: #464646;
}

.brand-divider {
    width: 1px;
    height: 45px;
    background: var(--primary);
    margin: 0 1.5rem;
}

.zoho-mobile {
    height: 20px;
}

/* ===============================
   NAV LINKS (FINAL LOGIC)
   =============================== */
.nav-link {
    font-weight: 600;
    color: #333 !important;
    padding: 1rem 1.25rem !important;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover → ONLY color change (no underline) */
.nav-link:hover {
    color: var(--primary) !important;
}

/* Active text color = current page */
.nav-link.active {
    color: var(--primary) !important;
}

/* Underline (hidden by default) */
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 10px;
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

/* Show underline ONLY when page is at top */
.navbar.at-top .nav-link.active::after {
    width: 60%;
}

/* ===============================
   CAROUSEL
   =============================== */
.carousel-item {
    position: relative;
}

.carousel-img {
    object-fit: cover;
    filter: brightness(0.6);
    transition: filter 0.5s ease;
}

.carousel-item.active .carousel-img {
    animation: zoomIn 8s ease-out forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.desktop-img {
    display: block;
}

.mobile-img {
    display: none;
}

.carousel-caption {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-content {
    max-width: 900px;
    padding: 2rem;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
}

/* Carousel Animation */
.slide-up {
    animation: slideUp 1s ease-out;
}

.slide-up-delay {
    animation: slideUp 1s ease-out 0.3s backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   ABOUT SECTION
   =============================== */
.py-6 {
    padding: 6rem 0;
}

.px-5 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateX(10px);
}

.feature-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.feature-box h3 {
    color: white;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===============================
   WHY CHOOSE US
   =============================== */
.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.icon-circle i {
    font-size: 2rem;
    color: white;
}

.why-box {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.4s ease;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.why-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.why-box:hover .icon-circle {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.why-box:hover h3 {
    color: var(--primary);
}

.why-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.center-card {
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.3);
    transition: var(--transition);
}

.center-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.4);
}

/* ===============================
   SCROLL REVEAL ANIMATIONS
   =============================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-gold);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stars {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* ===============================
   TESTIMONIALS SECTION (OPTIMIZED)
   =============================== */

.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

/* Card */
.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 3rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
}

/* Quote Icon */
.quote-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.quote-icon i {
    font-size: 1.9rem;
    color: #fff;
}

/* Text */
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: "“";
    position: absolute;
    left: -15px;
    top: -10px;
    font-size: 3rem;
    color: rgba(37, 99, 235, 0.15);
}

.testimonial-text::after {
    content: "”";
    position: absolute;
    right: -15px;
    bottom: -30px;
    font-size: 3rem;
    color: rgba(37, 99, 235, 0.15);
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
    margin-bottom: 1.25rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary);
}

.author-avatar i {
    font-size: 1.6rem;
    color: var(--primary);
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
}

.author-company {
    font-size: 0.95rem;
    color: #6b7280;
}

/* Rating */
.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
}

.testimonial-rating i {
    font-size: 1.2rem;
    color: #fbbf24;
}

/* Controls */
.testimonial-nav-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.testimonial-nav-icon i {
    color: var(--primary);
    font-size: 1.1rem;
}

.carousel-control-prev:hover .testimonial-nav-icon,
.carousel-control-next:hover .testimonial-nav-icon {
    background: var(--primary);
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
    color: #fff;
}

/* Indicators */
.testimonial-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    transition: 0.3s;
}

.testimonial-indicators button.active {
    width: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
}

/* ===============================
   MOBILE RESPONSIVE FIXES
   =============================== */

@media (max-width: 576px) {

    .testimonial-card {
        padding: 1.5rem 1.25rem;
        border-radius: 14px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .testimonial-text::before {
        left: -8px;
        top: -5px;
        font-size: 2.2rem;
    }

    .testimonial-text::after {
        right: -8px;
        bottom: -25px;
        font-size: 2.2rem;
    }

    .author-avatar {
        width: 52px;
        height: 52px;
    }

    .author-avatar i {
        font-size: 1.4rem;
    }

    .author-name {
        font-size: 1.05rem;
    }

    .author-company {
        font-size: 0.85rem;
    }

    .testimonial-nav-icon {
        width: 38px;
        height: 38px;
    }

    .testimonial-nav-icon i {
        font-size: 0.95rem;
    }

    .testimonial-indicators {
        margin-top: 1.5rem;
    }
}


/* ===============================
   FOOTER
   =============================== */
footer {
    background-color: var(--dark);
}

footer a {
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary) !important;
    transform: translateX(5px);
    display: inline-block;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* APPLYING PREVIOUS HOVER EFFECT */
.social-links a:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===============================
   BACK TO TOP
   =============================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    width: 50px;
    height: 50px;
    z-index: 99;
    transition: var(--transition);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.btn-lg-square {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===============================
   PLACEHOLDER IMAGES
   =============================== */
.img-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

/* ===============================
   RESPONSIVE STYLES
   =============================== */
@media (max-width: 991px) {
    .brand-divider {
        display: none;
    }
    
    .navbar-collapse {
        background: white;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .px-5 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 768px) {

    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .py-6 {
        padding: 3rem 0;
    }

    .navbar.px-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .navbar-brand {
        max-width: 85%;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .logo-icon i {
        font-size: 1.5rem;
    }

    .brand-title {
        font-size: 1.4rem;
    }

    .brand-tagline {
        display: none;
    }
}

@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .btn-primary {
        font-size: 0.9rem;
        padding: 0.5rem 1.5rem !important;
    }
    
    .why-box {
        padding: 1.5rem 1rem;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .icon-circle i {
        font-size: 1.5rem;
    }
}

/* ===============================
   LOADING ANIMATION
   =============================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.5s ease-in;
}

/* ===============================
   SMOOTH SCROLLING
   =============================== */
html {
    scroll-behavior: smooth;
}

/* ===============================
   ABOUT PAGE STYLES (BLUE THEME)
   Add this to the end of css/style.css
   =============================== */

/* Page Header */
.page-header-about {
    background: linear-gradient(135deg, #1e3a8a 0%, #2c5282 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-header-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.page-header-about h1 {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease;
}

/* About Content Left */
.about-content-left {
    padding-right: 2rem;
}

.about-content-left h1 {
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
}

/* We Offer Section */
.we-offer-right {
    position: relative;
    z-index: 1;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.offer-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.offer-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    margin-right: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.offer-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.offer-item:hover .offer-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.offer-item:hover .offer-icon i {
    color: var(--secondary);
}

.offer-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.offer-content p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-content-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .page-header-about {
        padding: 60px 0;
    }
    
    .page-header-about h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .offer-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .offer-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .offer-item:hover {
        transform: translateY(-10px);
    }
    
    .page-header-about h1 {
        font-size: 2rem;
    }
    
    .about-content-left h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .offer-icon {
        width: 60px;
        height: 60px;
    }
    
    .offer-icon i {
        font-size: 1.5rem;
    }
    
    .offer-content h3 {
        font-size: 1.2rem;
    }
    
    .offer-content p {
        font-size: 0.95rem;
    }
    
    .page-header-about {
        padding: 40px 0;
    }
}

/* ===============================
   SERVICES PAGE STYLES
   Add this to the end of css/style.css
   =============================== */

/* Services Page Header */
.page-header-services {
    background: linear-gradient(135deg, #1e3a8a 0%, #2c5282 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-header-services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.page-header-services h1 {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease;
}

/* Service Cards */
.service-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
    background: white;
}

.service-card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.35);
}

.service-card-icon i {
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 20px var(--primary);
}

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

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover .service-card-title {
    color: var(--primary);
}

.service-card-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Center the last card if odd number */
.service-card:only-child,
.service-card:nth-last-child(1):nth-child(odd) {
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .page-header-services {
        padding: 60px 0;
    }
    
    .page-header-services h1 {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 2.5rem 1.5rem;
    }
    
    .service-card-icon {
        width: 90px;
        height: 90px;
    }
    
    .service-card-icon i {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .page-header-services h1 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-card-icon i {
        font-size: 2rem;
    }
    
    .service-card-title {
        font-size: 1.3rem;
    }
    
    .service-card-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .page-header-services {
        padding: 40px 0;
    }
    
    .service-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-card-icon i {
        font-size: 1.8rem;
    }
    
    .service-card-title {
        font-size: 1.2rem;
    }
}

/* Animation delay for cards */
.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.service-card:nth-child(7) {
    animation-delay: 0.7s;
}

/* ===============================
   PRODUCTS PAGE STYLES (COMING SOON)
   Add this to the end of css/style.css
   =============================== */

/* Products Page Header */
.page-header-products {
    background: linear-gradient(135deg, #1e3a8a 0%, #2c5282 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-header-products::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.page-header-products h1 {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease;
}

/* Coming Soon Card */
.coming-soon-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(37, 99, 235, 0.1);
}

/* Animated Icon */
.coming-soon-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
    animation: float 3s ease-in-out infinite;
    position: relative;
}

.coming-soon-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary);
    animation: pulse-ring 2s ease-out infinite;
}

.coming-soon-icon i {
    font-size: 4rem;
    color: white;
    animation: rocket-shake 2s ease-in-out infinite;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Pulse Ring Animation */
@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Rocket Shake Animation */
@keyframes rocket-shake {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* Text Styles */
.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.coming-soon-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features List */
.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.feature-item i {
    font-size: 1.5rem;
    color: #10b981;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* Call to Action */
.coming-soon-cta {
    margin-top: 2.5rem;
}

/* Decorative Shapes */
.coming-soon-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    top: -150px;
    right: -150px;
    animation: rotate-shape 20s linear infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    bottom: -100px;
    left: -100px;
    animation: rotate-shape 15s linear infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    top: 50%;
    left: 10%;
    animation: float 4s ease-in-out infinite;
}

@keyframes rotate-shape {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(10deg);
}

.info-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .page-header-products {
        padding: 60px 0;
    }
    
    .page-header-products h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon-card {
        padding: 3rem 2rem;
    }
    
    .coming-soon-icon {
        width: 120px;
        height: 120px;
    }
    
    .coming-soon-icon i {
        font-size: 3rem;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-header-products h1 {
        font-size: 2rem;
    }
    
    .coming-soon-features {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.3rem;
    }
    
    .coming-soon-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-header-products {
        padding: 40px 0;
    }
    
    .coming-soon-card {
        padding: 2.5rem 1.5rem;
    }
    
    .coming-soon-icon {
        width: 100px;
        height: 100px;
    }
    
    .coming-soon-icon i {
        font-size: 2.5rem;
    }
    
    .coming-soon-title {
        font-size: 1.8rem;
    }
    
    .info-icon {
        width: 70px;
        height: 70px;
    }
    
    .info-icon i {
        font-size: 1.75rem;
    }
}

/* ===============================
   CONTACT PAGE STYLES
   Add this to the end of css/style.css
   =============================== */

/* Contact Page Header */
.page-header-contact {
    background: linear-gradient(135deg, #1e3a8a 0%, #2c5282 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-header-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.page-header-contact h1 {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 2rem;
}

/* Form Controls */
.form-group {
    margin-bottom: 0;
}

.form-control {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: white;
    outline: none;
}

.form-control::placeholder {
    color: #9ca3af;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button */
.btn-contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-contact:hover::before {
    left: 100%;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--primary);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    height: 100%;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

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

/* Contact Info Items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-info-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-info-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-content a:hover {
    color: white;
    text-decoration: underline;
}

/* Social Links */
.contact-social {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-link-item {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-item:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .page-header-contact {
        padding: 60px 0;
    }
    
    .page-header-contact h1 {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
    }
    
    .contact-form-title,
    .contact-info-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .page-header-contact h1 {
        font-size: 2rem;
    }
    
    .contact-form-title,
    .contact-info-title {
        font-size: 1.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-info-item:hover {
        transform: translateY(-10px);
    }
    
    .social-links-contact {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-header-contact {
        padding: 40px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }
    
    .form-control {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .btn-contact {
        padding: 0.875rem 1.5rem;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-info-icon i {
        font-size: 1.25rem;
    }
}