/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: white;
}


img{
    width: 100%;
}
/* =================================navbar================================ */




/* ==================== NAVBAR STYLES ==================== */
/* Fix the navbar to the top */
.navbar.scrolled{
    background: white !important;
}
.navbar {
    position: fixed !important;
    top: 0; left: 0;
    width: 100%;
    background-color: transparent; /* Deep Theme Blue */
    z-index: 1000;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
    font-family: 'Poppins', sans-serif;
}

.nav-container {
   width: 100%;
    padding: 0 20px;
    height: 80px; /* Fixed height */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Logo --- */

/* --- Desktop Menu Layout --- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    list-style: none;
    display: flex !important;
    gap: 30px;
    margin: 0; padding: 0;
}

.nav-link {
    color: #021936 !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700; /* Yellow hover */
}

/* --- Dropdown Styling --- */
.dropdown {
    position: relative;
    padding-bottom: 10px; /* Bridge gap for hover */
    margin-bottom: -10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 50%;
     left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    margin-top: 15px; /* Spacing from header */
    animation: fadeInUp 0.3s ease;
}

/* Small triangle pointer for dropdown */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px; left: 20px;
    width: 12px; height: 12px;
    background-color: white;
    transform: rotate(45deg);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content li a {
    color: #333;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s;
}
.dropdown-content li:last-child a { border-bottom: none; }

.dropdown-content li a:hover {
    background-color: #f0f8fc;
    color: #0086be;
    padding-left: 25px; /* Slide effect */
}

/* --- Navbar Button (Let's Talk) --- */
.btn-nav {
    padding: 10px 25px;
    background-color: #0086be;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-nav:hover {
   background-color: transparent;
    border-color: #0086be;
    color: #0086be;
}

/* --- Mobile Icons --- */
.menu-icon, .close-icon {
    display: none;
    cursor: pointer;
    color: #021936;
}
.menu-icon svg, .close-icon svg { width: 30px; height: 30px; }


/* ==================== RESPONSIVE (MOBILE) ==================== */
@media (max-width: 968px) {
    .menu-icon { display: block; }
    
    /* Sidebar Drawer Style */
    .nav-menu {
        position: fixed !important;
        top: 0; right: -100%; /* Hidden by default */
        width: 280px;
        height: 100vh;
        background-color: #021936;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px;
        gap: 20px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }

    .nav-menu.active { right: 0; } /* Slide in */

    .close-icon {
        display: block;
        position: absolute;
        top: 25px; right: 25px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }

    /* Mobile Dropdown */
    .dropdown:hover .dropdown-content { display: none; /* Disable hover on mobile */ }
    
    .dropdown-content {
        display: block; /* Always show links or use JS to toggle */
        position: static;
        background-color: rgba(0,0,0,0.2);
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        border-radius: 5px;
    }
    .dropdown-content::before { display: none; }
    
    .dropdown-content li a {
        color: #ddd;
        padding-left: 20px;
        border-color: rgba(255,255,255,0.05);
    }

    .btn-nav {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ===================================navbar================================ */



/* ==================== CREATIVE HERO BANNER STYLES ==================== */
.hero-banner-creative {
    position: relative;
   
    background-color: #ffffff;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;


    @media(min-width:765px){
         padding: 140px 0 100px 0;
    }
}

/* --- Background Blurs & Patterns --- */
.shape-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.5;
}
.shape-blue-blur {
    top: -20%; left: -10%;
    width: 600px; height: 600px;
    background-color: #e6f3fa;
}
.shape-light-blur {
    bottom: -10%; right: -10%;
    width: 700px; height: 700px;
    background-color: #f0f8ff;
}
/* New Tech Lines Pattern Overlay */
.tech-lines-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zM32 63c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm57-13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230086be' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
    pointer-events: none;
}

/* --- Layout --- */
.banner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 60px;
}

/* ==================== LEFT COLUMN: TEXT ==================== */
.banner-text-content {
    flex: 1;
    max-width: 520px;
}

.tag-pill {
    display: inline-block;
    background-color: #e6f3fa;
    color: #0086be;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.banner-text-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #021936;
    line-height: 1.2;
    margin-bottom: 25px;
}

.underline-yellow {
    position: relative;
    z-index: 1;
}
.underline-yellow::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0;
    width: 100%; height: 15px;
    background-color: #ffd700;
    z-index: -1;
    opacity: 0.7;
    border-radius: 4px;
}

.banner-text-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* --- Attractive Gradient Button --- */
.btn-gradient-glow {
    display: inline-block;
    /* Gradient from light accent blue to deep theme blue */
    background: linear-gradient(135deg, #0086be 0%, #021936 100%);
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    /* Glowing shadow effect */
    box-shadow: 0 10px 25px rgba(0, 134, 190, 0.5);
    transition: all 0.3s ease;
    margin-bottom: 50px;
    border: none;
}

.btn-gradient-glow:hover {
    /* Reverse gradient on hover for effect */
    background: linear-gradient(135deg, #021936 0%, #0086be 100%);
    transform: translateY(-3px) scale(1.02); /* Slight lift and grow */
    box-shadow: 0 15px 35px rgba(0, 134, 190, 0.7); /* Intensify glow */
}

/* --- Animated Google Rating --- */
.google-rating-animated {
    display: flex;
    align-items: center;
}
.rating-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #ffffff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}
.g-icon { width: 35px; height: 35px; }
.rating-details .score { display: block; font-size: 1.4rem; font-weight: 700; color: #021936; line-height: 1; }
.rating-details .stars { color: #f1c40f; font-size: 1rem; margin: 2px 0; }
.rating-details .reviews { font-size: 0.85rem; color: #888; }

@keyframes moveUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.moving-animation { animation: moveUpDown 3s ease-in-out infinite; }


/* ==================== RIGHT COLUMN: VISUALS ==================== */
.banner-visuals {
    flex: 1.2;
    position: relative;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.green-circle {
    position: absolute;
    top: 5%; right: 5%;
    width: 400px; height: 400px;
    background-color: #28c76f;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.9;
}

.yellow-banner-float {
    position: absolute;
    top: 25%; right: -40px;
    background-color: #ffd700;
    color: #021936;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 4;
    transform: rotate(5deg);
    display: none;
}

/* --- Group of 3 Images --- */
.image-group {
    position: relative;
    width: 450px; height: 500px;
    z-index: 2;
}
.group-img {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    object-fit: cover;
}
/* Image 1: Back Left, Tilted - Web Dev Coding */
.img-1 {
    width: 280px; height: 350px;
    top: 0; left: 0;
    transform: rotate(-10deg);
    z-index: 1;
}
/* Image 2: Back Right, Tilted - Team/Design */
.img-2 {
   width: 260px;
    height: 320px;
    top: 34px;
    right: -38px;
    transform: rotate(23deg);
    z-index: 2;
}
/* Image 3: Front Center, Straight - Setup */
.img-3 {
    width: 300px; height: 380px;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    border: 5px solid white;
}

/* --- Floating Conversation Card --- */
.floating-card-bottom {
    position: absolute;
    bottom: 30px; left: -50px;
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    z-index: 5;
    width: 260px;
    display: none;
}
.floating-card-bottom h4 { font-size: 1rem; color: #021936; margin-bottom: 15px; }
.conversation-list { list-style: none; padding: 0; margin: 0; }
.conversation-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.conversation-list img { width: 35px; height: 35px; border-radius: 50%; }
.conversation-list h5 { font-size: 0.9rem; margin: 0; color: #021936; }
.conversation-list span { font-size: 0.75rem; color: #888; }

.banner-visuals .check-icon {
    margin-left: auto; color: #28c76f; background-color: #eafaf1;
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; font-size: 0.7rem;
}

/* --- Enhanced Decorative Shapes --- */
.deco { position: absolute; z-index: 1; pointer-events: none;}
.triangle-blue {
    top: 10%; left: 5%;
    width: 0; height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid #0086be;
    transform: rotate(-25deg);
}
.circle-yellow {
    bottom: 20%; right: 10%;
    width: 18px; height: 18px;
    background-color: #ffd700;
    border-radius: 50%;
}
.dots-pattern-right {
    top: 40%; right: -60px;
    width: 100px; height: 150px;
    background-image: radial-gradient(#ccc 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 0;
}
/* New: Code Brackets */
.code-brackets {
    top: 20%; right: 30%;
    font-weight: 900;
    font-size: 2rem;
    color: #0086be;
    opacity: 0.2;
    transform: rotate(15deg);
}
/* New: Plus Shape */
.plus-shape {
    bottom: 10%; left: 20%;
    font-weight: 900;
    font-size: 3rem;
    color: #ffd700;
    opacity: 0.3;
}

/* ==================== RESPONSIVE --- */
@media (max-width: 1100px) {
    .banner-row { flex-direction: column; text-align: center; gap: 80px; }
    .banner-text-content { max-width: 100%; display: flex; flex-direction: column; align-items: center;}
    .banner-visuals { width: 100%; min-height: 500px; }
    .image-group { width: 100%; max-width: 450px; }
    .green-circle { right: auto; left: 50%; transform: translateX(-50%); }
    .yellow-banner-float { right: 5%; }
    .floating-card-bottom { left: 50%; transform: translateX(-50%); bottom: -40px; }
    .dots-pattern-right { right: 0; }
}
@media (max-width: 600px) {
    .hero-banner-creative { padding-top: 120px; }
    .banner-text-content h1 { font-size: 2.4rem; }
    .image-group { height: 400px; }
    .img-1 { width: 200px; height: 260px; }
    .img-2 { width: 180px; height: 240px; top: 40px; }
    .img-3 { width: 220px; height: 280px; }
    .green-circle { width: 300px; height: 300px; }
}

/* =======================end banner================================ */


/* ==================== ABOUT COMPANY STYLES ==================== */
.about-company-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.about-company-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 80px; /* Space between image and text */

    @media(max-width:968px){
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
}

/* --- Left Side: Image Composition --- */
.image-composition {
    flex: 1;
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Blue Rounded Rectangle Background */
.bg-shape {
   position: absolute;
    width: 350px;
    height: 550px;
    background-color: #e6f3fa;
    border: 2px solid #0086be;
    border-radius: 40px 0 40px 0;
    transform: rotate(-5deg);
    z-index: 1;
}

/* Double Solid Accent Shape behind */
.bg-shape::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: #0086be; /* Solid Accent Blue */
    border-radius: 40px 0 40px 0;
    z-index: -1;
    opacity: 0.1;
}

/* Decorative Dots */
.dots-pattern {
    position: absolute;
    left: -20px;
    top: 50px;
    width: 100px;
    height: 200px;
    background-image: radial-gradient(#0086be 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
}

/* The Circular Main Image */
.image-wrapper {
    position: relative;
    z-index: 2;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Right Side: Text Content --- */
.content-side {
    flex: 1;
}

.sub-tag {
    display: inline-block;
    background-color: #e6f3fa; /* Light blue pill background */
    color: #0086be;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.main-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #021936; /* Deep Blue Theme */
    line-height: 1.2;
    margin-bottom: 25px;
}

.description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 1rem;

    @media(max-width:765px){
        font-size: 15px !important;
    }
}

/* Grid for Checkpoints */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columns */
    gap: 20px;
    margin-bottom: 40px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #021936;
    font-size: 0.95rem;
}

.check-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #0086be; /* Accent Blue Circle */
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Button Styling */
.btn-pill {
    text-decoration: none;
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #0086be; /* Outline style initially */
    color: #0086be;
    font-weight: 600;
    border-radius: 50px; /* Pill shape */
    transition: all 0.3s ease;
}

.btn-pill:hover {
    background-color: #0086be;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 134, 190, 0.2);
    transform: translateY(-2px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
    .container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .image-composition {
        min-height: 400px;
    }

    .image-wrapper {
        width: 300px;
        height: 300px;
    }

    .bg-shape {
        width: 220px;
        height: 380px;
    }

    .features-grid {
        text-align: left; /* Keep list aligned left */
        max-width: 500px;
        margin: 0 auto 40px auto;
    }
    
    .main-heading {
        font-size: 2rem;
    }
}

/* =====================================END ABOUT SECTION================ */

/* ==================== FEATURES SECTION STYLES ==================== */
.features-section {
    padding: 100px 0;
    background-color: #f8fbfd; /* Very light blue-grey background for contrast */
    font-family: 'Poppins', sans-serif;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.text-center { text-align: center; }

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header .sub-heading {
    color: #0086be;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #021936;
    margin-bottom: 20px;
}

.section-header .section-desc {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- FEATURES GRID & CARDS --- */
.features-grid {
    display: grid;
    /* Responsive grid: creates 4 columns that stack on smaller screens */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;
    /* Subtle initial shadow */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    /* Important for smooth hover animation */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent; /* Placeholder for colored border */
}

/* --- Individual Color Themes using CSS Variables --- */
/* Card 1: Blue */
.card-blue {
    --theme-color: #0086be;
    --theme-light: #e6f3fa;
    border-color: var(--theme-color);
}
/* Card 2: Orange */
.card-orange {
    --theme-color: #ff9f43;
    --theme-light: #fff3e6;
    border-color: var(--theme-color);
}
/* Card 3: Green */
.card-green {
    --theme-color: #28c76f;
    --theme-light: #eafaf1;
    border-color: var(--theme-color);
}
/* Card 4: Purple */
.card-purple {
    --theme-color: #7367f0;
    --theme-light: #f2f1ff;
    border-color: var(--theme-color);
}

/* Icon Styling */
.icon-wrapper {
    width: 70px;
    height: 70px;
    /* Use the theme light color for background */
    background-color: var(--theme-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
    /* Use the theme main color for the icon itself */
    color: var(--theme-color);
    transition: all 0.3s ease;
}

/* Card Text Styling */
.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #021936;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

/* --- HOVER ANIMATIONS --- */
.feature-card:hover {
    /* Lift up effect */
    transform: translateY(-15px);
    /* Stronger, softer shadow with a tint of the theme color */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 15px 20px var(--theme-light);
}

/* On hover, fill the icon wrapper with the solid theme color */
.feature-card:hover .icon-wrapper {
    background-color: var(--theme-color);
    transform: scale(1.1) rotate(5deg); /* Slight pulse and tilt */
}

/* On hover, change the icon color to white for contrast */
.feature-card:hover .icon-wrapper svg {
    color: #ffffff;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .features-section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    .section-title { font-size: 2rem; }
    .features-grid { gap: 20px; }
    .feature-card { padding: 30px 25px; }
}

/* =======================FEATURES ============================================== */

/* ==================== PRODUCTS SECTION STYLES ==================== */
.products-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Wraps on smaller screens */
    align-items: center; /* Vertically aligns cards */
}

/* Base Card Styling */
.product-card {
    background: #ffffff;
    width: 350px;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Soft shadow */
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

/* Styling for the Featured Card (Middle one) */
.featured-card {
    background: #021936; /* Dark Blue Background */
    color: white; /* White text */
    transform: scale(1.05); /* Slightly larger */
    box-shadow: 0 15px 40px rgba(0, 134, 190, 0.2);
    border: none;
    z-index: 2;
}

/* Icon Styling */
.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #f0f8fc; /* Light blue circle for white cards */
    color: #0086be;
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

/* Featured Card Icon Adjustment */
.featured-card .card-icon {
    background-color: rgba(255, 255, 255, 0.1); /* Transparent white */
    color: #ffffff;
}

/* Typography */
.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #021936;
}

.featured-card h3 {
    color: #ffffff;
}

.product-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.featured-card p {
    color: #dbeaf9; /* Light blue-grey text */
}

/* Link/Button Styling */
.details-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0086be;
    transition: color 0.3s;
}

.featured-card .details-link {
    color: #ffffff;
    border-bottom: 1px solid #0086be;
    padding-bottom: 2px;
}

.details-link:hover {
    color: #021936;
}

.featured-card .details-link:hover {
    color: #0086be;
    border-color: white;
}

/* Hover Effects */
.product-card:hover {
    transform: translateY(-10px); /* Lifts up */
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.featured-card:hover {
    transform: scale(1.05) translateY(-10px); /* Maintain scale and lift */
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .products-grid {
        flex-direction: column;
    }
    
    .product-card {
        width: 100%;
        max-width: 400px;
    }

    .featured-card {
        transform: scale(1); /* Reset scale on mobile */
    }
    
    .featured-card:hover {
        transform: translateY(-10px);
    }
}

/* =================================PRODUCT SECTION=================================== */

/* ==================================================================
      keyword ranking  END
==================================================================  */
.kywrd-rnk-scn {
    @media(max-width:765px){
        h2.title{
            font-size:37px !important;
            text-align:center;
        }
        .sub-title{
            text-align:justify !important;
        }
    }
    h2.title {
       font-size: 2.5rem;
        font-weight: 700;
        color: #021936;
        margin-bottom: 20px;
        text-transform: capitalize;
    }
    .sub-title{
        text-align:center;
    }
    .col-md-4{
        margin-bottom: 20px;
    }
  .card {
   padding: 5px;
        background: linear-gradient(45deg, #0086be, #0d6efd);
        border-radius: 15px;
        color: white;
        border: 0;
    .card-body{
        display: none;
      }
    .img-div {
      display: block;
      width: 100%;
      height: 350px;
      overflow: hidden;
      position: relative;
     
      border-radius: 10px;
      margin: 0 auto;
      .title{
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        background: #22c784;
        width: fit-content;
        color: white;
        padding: 5px 10px ;
        border-radius: 10px 10px 0 0;
        transition: 0.5s;
        cursor: pointer;
        display: none;
      }
      
    }

    .img-div img {
      display: block;
      width: 100%;
      height: auto;
      transform: translateY(0);   /* start from top */
      transition: transform 2s linear;
    }

    .img-div:hover{
        .title{
            letter-spacing: 1px;
        }
    }
    .img-div:hover img {
      transform: translateY(calc(-100% + 350px)); 
      transition: transform 11s linear; /* smooth */
      /* moves image up until its bottom touches container bottom */
    }
    a{
        color: #22c784;
        cursor: pointer;
    }
  }
}

/* ==================================================================
      keyword ranking  END
==================================================================  */

/* ==================== FAQ SECTION STYLES ==================== */
.faq-section {
    padding: 80px 0;
    background-color: #f8fbfd; /* Light background to separate from Products section */
    font-family: 'Poppins', sans-serif;
}

.faq-container {
    /* max-width: 800px;  */
    margin: 0 auto;
}

.faq-item {
  background-color: white;
    margin-bottom: 15px;
    border-radius: 17px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
    position: relative;
    border-left: 4px solid #013f8d;
}


/* The Clickable Question Area */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #021936;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #fafafa;
    color: #0086be; /* Highlight text on hover */
}

/* The Plus/Minus Icon */
.faq-icon {
    font-size: 1.5rem;
    color: #0086be;
    font-weight: 300;
    transition: transform 0.3s ease;
}

/* Styles for when the item is open */
.faq-item.active .faq-question {
    color: #0086be;
    background-color: #f0f8fc;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Turns + into x */
}

/* The Answer Area (Hidden by default) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out; /* Smooth sliding animation */
    background-color: #ffffff;
}

.answer-content {
    padding: 0 25px 25px 25px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    border-top: 1px solid transparent; /* Prevents border doubling */
}

/* Responsive adjustment */
@media (max-width: 600px) {
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
}

/* =============================FAQ SECTION==================================== */

/* ==================== FOOTER STYLES ==================== */
/* ==================== FOOTER STYLES ==================== */
.footer-section {
    background-color: #021936; /* Theme Deep Blue */
    color: #c4ceda; /* Light Blue-Grey Text */
    padding: 80px 0 0 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    border-top: 4px solid #0086be; /* Accent border on top */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    /* Create 4 columns: Brand is wider, others equal */
    grid-template-columns: 2fr 1fr 1fr 1.5fr; 
    gap: 40px;
    margin-bottom: 60px;
}
.ft_logo{
    width: 210px;
}
/* --- Typography & Headings --- */
.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}
.footer-logo .dot { color: #ffd700; font-size: 2.5rem; line-height: 0; }

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

/* Yellow underline for headings */
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 0;
    width: 40px; height: 3px;
    background-color: #73e0fb;
    border-radius: 2px;
}

/* --- Social Icons --- */
.social-links {
    display: flex;
    gap: 15px;
}
.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px; height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.social-icon svg { width: 20px; height: 20px; }

.social-icon:hover {
    background-color: #0086be; /* Blue hover */
    transform: translateY(-3px);
    color: white;
}

/* --- Links & Menus --- */
.footer-menu {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-menu li { margin-bottom: 12px; }

.footer-menu a {
    color: #c4ceda;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #73e0fb; /* Yellow hover */
    padding-left: 5px; /* Slide effect */
}

/* --- Contact List --- */
.contact-list {
    list-style: none;
    padding: 0; margin: 0;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.icon-marker {
    color: #73e0fb;
    margin-top: 2px;
}
.icon-marker svg { width: 20px; height: 20px; }

.contact-list a {
    color: #b0c4de;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-list a:hover { color: white; }

/* --- Footer Bottom Bar --- */
.footer-bottom {
    background-color: #011226; /* Slightly darker shade */
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: #889bb0;
}
.footer-bottom .legal-links a {
    color: #889bb0;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}
.footer-bottom .legal-links a:hover { color: #73e0fb; }


/* ==================== RESPONSIVE FOOTER ==================== */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* 2x2 Layout */
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .footer-bottom .legal-links a {
        margin: 0 10px;
    }
}


/* --- Updated Footer Contact Styles --- */
.office-group {
    margin-bottom: 25px;
}

/* Label for "Kerala Office" / "Bangalore Office" */
.office-label {
    color: #73e0fb; /* Yellow Accent */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.icon-marker {
    color: #0086be; /* Blue Icon */
    margin-top: 3px;
    flex-shrink: 0; /* Prevents icon from squishing */
}
.icon-marker svg { width: 18px; height: 18px; }

.contact-list a {
    color: #b0c4de;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: white;
    text-decoration: underline;
}

/* ======================footer ================================== *//* ========================side icons=========================== */

.whats-btn img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(15deg) brightness(107%) contrast(101%);
  height: 1.5rem;
  width: 1.5rem;
}

.call-btn img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(82deg) brightness(105%) contrast(105%);
  height: 1.5rem;
  width: 1.5rem;
}

.call-btn:hover {
  width: fit-content;
}

.whats-btn:hover .title,
.insta-btnn:hover .title {
  width: 100px;
  color: white;
}

.call-btn:hover .title {
  width: 100px;
}

.call-btn .img-div,
.whats-btn .img-div,
.insta-btnn .img-div {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-btn .title,
.whats-btn .title,
.insta-btnn .title {
  /* transform: translateX(100%); */
  /* visibility: hidden; */
  /* display: none; */
  width: 0px;
  overflow: hidden;
  transition: 0.5s;
  white-space: nowrap;

}

.call-btn {
  position: fixed;
  /* left: 2rem; */
  bottom: 6rem;
  height: 3rem;
  /* width: 3rem; */
  z-index: 999;
  color: white;
  background: #009ee3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  right: 0;
  text-decoration: none;
  border-radius: 5px 0 0 5px;
}

.whats-btn,
.insta-btnn {
  position: fixed;
  /* left: 2rem; */
  bottom: 6rem;
  height: 3rem;
  /* width: 3rem; */
  z-index: 999;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  right: 0;
  text-decoration: none;
  border-radius: 5px 0 0 5px;
}

.whats-btn {
  background: #007f38;
  transform: translateY(-50px);
  /* right: 2rem; */
}

.insta-btnn {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  transform: translateY(-100px);
  /* width: 100px; */
}

.insta-btnn img {
  /* height: 22px; */
  filter: invert(100%) sepia(0%) saturate(1503%) hue-rotate(327deg) brightness(105%) contrast(94%);
}


/* ========================side icons=========================== */