  
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

:root {
    /* Logo Colors */
    --primary-color: #12679D;    /* লোগোর ডার্ক ব্লু */
    --secondary-color: #E31E25;
    --logo-red: #e30613;
    --it-blue: #12679D;
    --it-red: #E31E25;
    --it-bg-light: #f8fafc;          /* লোগোর লাল রঙ */
    
    /* Typography & Backgrounds */
    --text-dark: #0f172a;
    --text-muted: #475569;
    --card-bg: #ffffff;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .mb-50{
            margin-bottom: 50px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;

            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
             font-family: 'SolaimanLipi';
        }

        /* Top Bar Styles */
        .top-bar {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }

        .logo-text img{
            height: 60px;
        }

        .logo-text:hover {
            transform: scale(1.05);
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .contact-info i {
            color: var(--primary-color);
            font-size: 22px;
            padding: 10px;
            background: rgba(26, 122, 142, 0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .contact-info:hover i {
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }

        .contact-info strong {
            display: block;
            color: var(--dark-text);
            font-size: 15px;
            font-weight: 600;
        }

        .contact-info span {
            color: var(--light-text);
            font-size: 13px;
        }

        .social-icons {
            display: flex;
            gap: 10px;
            margin-left: 5px;
        }

        .social-icons a {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            color: var(--dark-text);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icons a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-color);
            transform: scale(0);
            transition: transform 0.3s ease;
            border-radius: 50%;
            z-index: -1;
        }

        .social-icons a:hover::before {
            transform: scale(1);
        }

        .social-icons a:hover {
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Navigation Styles */
        .main-nav {
            background: var(--primary-color);
            box-shadow: 0 4px 12px rgba(26, 122, 142, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            padding: 0;
        }

        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            padding: 18px 22px !important;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--accent-orange);
            transition: width 0.3s ease;
        }

        .nav-link:hover::before,
        .nav-link.active::before {
            width: 60%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: white !important;
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-link.home {
            color: var(--accent-orange) !important;
            font-weight: 600;
        }

        .search-icon {
            color: white;
            padding: 18px 22px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-icon:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: scale(1.1);
        }

        .navbar-toggler {
            border: 2px solid var(--primary-teal);
            padding: 8px 12px;
            background: white;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(26,122,142,0.2);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a7a8e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .hero-section {
            padding: 80px 0;
            background-color: white;
        }

        /* --- 3. Left Content (Text) --- */
        .tag-pill-new {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--bg-light);
            color: var(--check-color);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 25px;
            border: 1px solid var(--secondary-color);
        }
        
        .tag-pill-new svg {
            color: var(--check-color);
        }

        .headline-text-new {
            font-size:45px;
            font-weight: 800;
            /*line-height: 1.15;*/
            color: var(--dark-heading);
            margin-bottom: 20px;
        }

        .headline-text-new + .divider-line-new {
            width: 80px;
            height: 3px;
            background-color: var(--accent-orange);
            margin-bottom: 30px;
            border-radius: 1px;
        }

        .description-paragraph {
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        /* Checkbox List Styling */
        .check-list-new {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }
        
        .check-list-new li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            font-weight: 500;
            color: var(--dark-heading);
            font-size: 1.0rem;
        }
        
        .check-list-new li:before {
            content: '✓'; /* Using a simple checkmark character */
            position: absolute;
            left: 0;
            color: var(--accent-orange); /* Use orange for the checkmark */
            font-size: 1.2rem;
            line-height: 1;
            font-weight: 700;
        }

        /* Get Started Button */
        /* কাস্টম @keyframes তৈরি করা */
@keyframes pulse-effect {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(12, 130, 158, 0.7); /* বাটন কালার ব্যবহার করা হয়েছে */
    }
    70% {
        transform: scale(1.03); /* একটু বড় হবে */
        box-shadow: 0 0 0 10px rgba(12, 130, 158, 0); /* ছায়াটি বাইরের দিকে ছড়িয়ে যাবে */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(12, 130, 158, 0);
    }
}

/* বাটনে অ্যানিমেশন যোগ করা */
.btn-get-started-new {
    background-color: #0c829e;
    border-color: #0c829e;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 0px;
    transition: background-color 0.3s, transform 0.3s;
    animation: pulse-effect 2s infinite ease-in-out;
}

/* আপনার পূর্বের :hover স্টাইল */
.btn-get-started-new:hover {
    background-color: #0a697b;
    transform: translateY(-2px);
    animation: none; /* হোভার করার সময় পালস বন্ধ হয়ে যাবে */
    color:#fff;
}

        /* --- 4. Right Content (Image & Card) --- */
        .image-container-new {
            position: relative;
            padding-right: 20px; /* Space for the overlapping card */
        }

        .main-image-new {
            width: 100%;
            height: 100%; /* Will be controlled by its wrapper */
            /*object-fit: cover;*/
            border-radius: 0px;
            /*box-shadow: 0 10px 30px var(--box-shadow-color);*/
        }

        /* Wrapper for the main image to control its height and overflow */
        .image-wrapper-new {
            height: 550px; /* Fixed height for visual structure */
            overflow: hidden;
            border-radius: 0px;
            /*box-shadow: 0 15px 40px rgba(0,0,0,0.15);*/
        }
        
        /* Overlapping Card Style */
        .stats-card-new {
            background-color: var(--secondary-color); /* Orange background */
            color: white;
            border-radius: 0px;
            padding: 20px 25px;
            text-align: center;
            font-weight: 600;
            position: absolute;
            z-index: 10;
            /* Positioning: bottom left corner of the image */
            bottom: 20px; 
            left: 20px; 
            width: 150px;
            box-shadow: 0 4px 15px rgba(255, 127, 80, 0.5);
        }

        .stats-card-new .number {
            font-size: 1.8rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 5px;
        }

        .stats-card-new .text {
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        /* --- 5. Responsive Adjustments --- */
        @media (max-width: 991px) {
            .hero-section {
                padding: 50px 0;
            }
            .image-wrapper-new {
                height: 400px; /* Smaller height on tablets */
                margin-top: 40px;
            }
            .image-container-new {
                padding-right: 0;
            }
            .stats-card-new {
                /* Center card below the image on small screens */
                position: relative;
                width: 50%; 
                margin: 20px auto 0;
                bottom: auto;
                left: auto;
            }
        }
        
        @media (max-width: 576px) {
            .image-wrapper-new {
                height: 300px; /* Even smaller height on mobile */
            }
             .stats-card-new {
                width: 70%; 
            }
        }

    /* Set a light beige background for the section */



/*testimonial*/
.ami-testimonial-section {
            padding: 60px 0;
            background-color: #fff;
        }

        .ami-image-side {
            padding: 20px;
            background-color: var(--ami-border-light);
            border-radius: 10px 0 0 10px;
            padding-right: 0;
        }

       .ami-man-image {
    width: 100%;
    height: 450px;
    display: block;
    border-radius: 30px;
}

        .ami-content-side {
            padding: 20px 40px;
        }

        .ami-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--ami-text-dark);
            margin-bottom: 20px;
        }

        .ami-tag {
            display: inline-block;
            background-color: var(--ami-light-blue);
            color: var(--ami-blue);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* Testimonial Card Styling */
        .testimonial-card {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.2);
    padding: 30px;
    /* border-radius: 8px; */
    height: 260px;
    /* margin: 10px; */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
    position: relative;
}

        .testimonial-card .quote-icon {
            font-size: 3rem;
            color: var(--ami-quote-blue);
            line-height: 0.5;
            position: absolute;
            top: 20px;
            right: 20px;
            opacity: 0.7;
        }

        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .client-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 2px solid var(--ami-quote-blue);
        }

        .client-name {
            font-weight: 700;
            color: var(--ami-quote-blue);
        }

        .client-location {
            display: block;
            font-size: 0.9rem;
            color: var(--ami-text-secondary);
        }

        .testimonial-text {
            color: var(--ami-text-secondary);
            font-style: italic;
        }

        /* -------------------------------------- */
        /* Slick Slider Custom Navigation Styling */
        /* -------------------------------------- */
        .slick-prev, .slick-next {
            font-size: 0; /* Hide default icons */
            line-height: 0;
            position: absolute;
            top: 50%;
            width: 40px;
            height: 40px;
            padding: 0;
            transform: translate(0, -50%);
            cursor: pointer;
            color: transparent;
            border: 1px solid var(--ami-quote-blue);
            outline: none;
            background: #fff;
            border-radius: 50%;
            z-index: 10;
        }

        /* Adjust position for the controls to be outside/custom area */
        /* This places the controls correctly next to the slider content */
        .slick-slider .slick-prev {
            left: -50px; /* Adjust as needed */
            top: unset;
            bottom: -50px; /* Position below the slider */
        }
        .slick-slider .slick-next {
            right: -50px; /* Adjust as needed */
            top: unset;
            bottom: -50px; /* Position below the slider */
        }
        
        /* Custom Chevrons (like in the original image) */
        .slick-prev::before, .slick-next::before {
            font-family: 'slick';
            font-size: 24px;
            line-height: 1;
            color: var(--ami-quote-blue);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .slick-prev::before {
            content: '‹'; 
            /* In Slick's font, 'content: "\2039";' might be used, but we use a standard character for simplicity */
        }

        .slick-next::before {
            content: '›';
            /* In Slick's font, 'content: "\203a";' might be used, but we use a standard character for simplicity */
        }

        /* Customizing placement to match your design (buttons below, to the right) */
        .slick-nav-wrapper {
            display: flex;
            justify-content: flex-end;
            margin-top: 20px;
        }

        /* Slick dots (if needed) */
        .slick-dots { display: none !important; }

        /* Custom buttons for navigation */
        .custom-slick-prev, .custom-slick-next {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--ami-quote-blue);
            background-color: white;
            color: var(--ami-quote-blue);
            font-size: 1.5rem;
            margin-left: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }
/*testimonial*/

/* ছবির সাথে মিল রেখে কাস্টম গাঢ় ধূসর পটভূমি */
.custom-dark-bg {
  background-color: var(--primary-color);
  color: #fff;
}

/* ফুটার লোগোর আকার (যদি ইমেজ ব্যবহার করেন) */
.footer-logo {
    width: 100%; /* লোগোর একটি আনুমানিক আকার */
    height: auto;
}

/* সামাজিক আইকনের বোতামের কাস্টম স্টাইল */
.btn-social {
    width: 30px; /* বৃত্তাকার আকারের জন্য চওড়া ও উচ্চতা */
    height: 30px;
    padding: 0;
    line-height: 30px; /* আইকনকে মাঝখানে আনার জন্য */
    border-radius: 50%; /* বৃত্তাকার */
    border-color: #fff!important; /* ধূসর বর্ডার */
    color: #fff;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* সামাজিক আইকনের হোভার স্টাইল */
.btn-social:hover {
    background-color: #fff;
    color: #2c2f33 !important; /* হোভারে গাঢ় পটভূমির রঙ */
}

/* লিংক আইটেমগুলির হোভার স্টাইল */
.list-unstyled a {
    color: #fff !important; /* হোভারে সাদা রঙ */
    text-decoration: none;
}
.list-unstyled a:hover {
    color: #fff !important; /* হোভারে সাদা রঙ */
}

.border-secondary {
    border: 1px solid rgba(255,255,255,1)!important;
}


/* Add this to your custom CSS file (e.g., style.css) */
.modern-service-box {
    /* Slightly transparent background for 'Glassmorphism' feel */
    background-color:var(--primary-color);
    backdrop-filter: blur(5px); /* Adds the blur effect (optional, but modern) */
    border: 1px solid rgba(100, 255, 218, 0.3); /* Light, transparent border */
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}
/* Hover effect to make it feel interactive */
.modern-service-box:hover {
    transform: translateY(-5px); /* Lift up on hover */
    border-color: #64FFDA; /* Full accent color on hover */
}
/* Glowing Accent Bar */
.modern-service-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    box-shadow: 0 0 10px #64FFDA; /* Subtle glow */
}

#split-hero{
    background:url('images/cta-1-bg-1-1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding:80px 0px;
}
.hero-title{
    color:var(--primary-color);
    font-size: 42px!important;
  font-weight: 800!important;
}
.hero-subtitle{
    color:#000;
}
.view_portfolio{
    
    border:1px solid var(--secondary-color);
    background:var(--secondary-color)!important;
}

/* Custom CSS for the Marquee */
.client-slick-logo {
    max-height: 80px;
    object-fit: contain;
    margin: 0 auto;
}
.logo-item {
    padding: 10px;
}


/* --- Featured Post Card Styles --- */
.featured-post-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Ensure rounded corners work */
}

/* Hover effect for the entire featured card */
.featured-post-card:hover {
    transform: translateY(-5px); /* Lift the card slightly */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Stronger shadow */
}

/* Ensure the featured image takes up the full height on larger screens */
.featured-img {
    height: 100%;
    object-fit: cover; /* Crop to cover the area without stretching */
    border-radius: 0.375rem 0 0 0.375rem; /* Match Bootstrap rounded corners */
}




 .team-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .team-card {
            background: white;
            border-radius: 0px;
            overflow: hidden;
            transition: all 0.4s ease;
            margin-bottom: 30px!important;
            /*height: 100%;*/
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .team-img-wrapper {
            position: relative;
            overflow: hidden;
            height: 300px;
        }
        
        .team-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .team-card:hover .team-img-wrapper img {
            transform: scale(1.1);
        }
        
        .team-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .team-card:hover .team-overlay {
            opacity: 1;
        }
        
        .team-social {
            display: flex;
            gap: 15px;
        }
        
        .team-social a {
            width: 45px;
            height: 45px;
            background: white;
            color: #667eea;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .team-social a:hover {
            background: #667eea;
            color: white;
            transform: translateY(-3px);
        }
        
        .team-info {
            padding: 25px;
            text-align: center;
        }
        
        .team-info h4 {
            font-size: 22px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }
        
        .team-info .position {
            font-size: 15px;
            color: #667eea;
            font-weight: 500;
            margin-bottom: 12px;
        }
        
        .team-info p {
            font-size: 14px;
            color: #7f8c8d;
            line-height: 1.6;
        }
        
        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-top: 15px;
        }
        
        .skill-badge {
            background: #f0f3ff;
            color: #667eea;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
        }

/*contact section*/
        .contact-section{
            padding:80px 0px;
        }
        .contact-info-card {
            background: var(--primary-color);
            color: white;
            border-radius: 0px;
            padding: 40px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .info-item {
            display: flex;
            align-items: start;
            margin-bottom: 30px;
        }
        
        .info-icon {
            font-size: 24px;
            margin-right: 20px;
            min-width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .info-content h5 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .info-content p {
            margin: 0;
            opacity: 0.9;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: white;
            color: #667eea;
            transform: translateY(-5px);
        }
        
        .form-section {
            padding: 40px;
            height: 100%;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 8px;
        }
        
        .form-control, .form-select {
            border: 1px solid var(--primary-color);
            border-radius: 0px;
            padding: 12px 15px;
            transition: all 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }
        
        .btn-submit {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            padding: 15px 40px;
            border-radius: 10px;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            width: 100%;
        }
        
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }
        
        .map-section {
            padding: 40px;
            background: #f8f9fa;
        }
        
       
        
        @media (max-width: 768px) {
            .header-section h1 {
                font-size: 2rem;
            }
            .form-section, .map-section {
                padding: 30px 20px;
            }
        }


      


      /*  message from ceo*/
  .message-from-ceo {
    padding: 80px 0px;
    background-image: url("/front-end/images/cta-1-bg-1-1.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}




        .image-section {
            position: relative;
            display: flex;
            /*justify-content: center;*/
            align-items: center;
        }

        .ceo-image-wrapper {
            position: relative;
            width: 350px;
            height: 450px;
        }

             .ceo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    border: 8px solid #e8e8e8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ceo-badge {
    position: absolute;
    bottom: 80px;
    right: -70%;
    transform: translateX(-50%);
    background: #c41e3a;
    color: white;
    width: 240px;
    height: 100px;
    /* border-radius: 50%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
    border: 3px solid white;
    padding: 5px 20px;
}

        .ceo-badge .name {
            font-size: 18px;
            font-weight: bold;
            margin: 0;
            line-height: 1.2;
        }

        .ceo-badge .title {
            font-size: 14px;
            margin: 0;
            opacity: 0.95;
        }

        .content-section {
            padding-left: 40px;
        }

        .main-heading {
            margin-bottom: 0;
        }

        .main-heading .red-text {
            color: var(--primary-color);
            font-size: 30px;
            font-weight: 700;
            display: block;
            line-height: 1.2;
        }

        .main-heading .black-text {
            color: #2c3e50;
            font-size: 32px;
            font-weight: 400;
            display: block;
            margin-top: -5px;
        }

        .divider-section {
            margin: 15px 0 30px 0;
            position: relative;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .yellow-line {
            height: 2px;
            background: var(--primary-color);
            flex: 1;
        }

        .quote-mark {
            color: var(--secondary-color);
            font-size: 40px;
            font-weight: bold;
            line-height: 1;
            margin: 0;
            padding: 0 10px;
        }

        .bottom-divider {
            margin: 25px 0 0 0;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .content-heading {
            color: #2c3e50;
            font-size: 32px;
            font-weight: 700;
            margin: 30px 0 10px 0;
        }

        .content-subtitle {
            color: #7f8c8d;
            font-size: 16px;
            margin-bottom: 25px;
        }

        .content-text {
    color: #000;
    font-size: 18px;
    line-height: 1.8;
    /* margin-bottom: 15px; */
    font-weight: 600;
}

        @media (max-width: 768px) {
            .ceo-container {
                padding: 30px;
            }

            .content-section {
                padding-left: 0;
                margin-top: 40px;
            }

            .ceo-image-wrapper {
                width: 280px;
                height: 360px;
            }

            .main-heading .red-text {
                font-size: 25px;
            }

            .main-heading .black-text {
                font-size: 25px;
            }

            .content-heading {
                font-size: 26px;
            }

            .ceo-badge {
    position: absolute;
    bottom: 29px;
    left: 50%;
    transform: translateX(-50%);
    background: #c41e3a;
    color: white;
    width: 180px;
    height: 60px;
    border-radius: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
    /* border: 3px solid white; */
    padding: 5px 20px;
}

.ceo-badge .name {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}
        }
      /*  message from ceo*/


     /* pricing*/
     .pricing_area{
        padding:80px 0px;
     }
     .pricing-card {
            background: white;
            border-radius: 0px;
            padding: 35px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            height:100%;
            position: relative;
            border-top: 4px solid transparent;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top:2px solid var(--primary-color);
            margin-bottom: 10px!important;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
        }

        .card-header-custom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .plan-title {
            font-size: 24px;
            font-weight: 700;
            color: #1f2937;
            margin: 0;
        }

        .badge-custom {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .badge-basic {
            background: #dbeafe;
            color: #3b82f6;
        }

        .badge-popular {
            background: #d1fae5;
            color: #10b981;
        }

        .price {
            font-size: 42px;
            font-weight: 700;
            margin: 15px 0 25px 0;
        }

        .price.basic-price {
            color: #3b82f6;
        }

        .price.popular-price {
            color: #10b981;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
        }

        .features-list li {
            padding: 5px 0;
            display: flex;
            align-items: flex-start;
            font-size: 15px;
            color: #4b5563;
            line-height: 1.6;
        }

        .features-list li i {
            color: var(--primary-color);;
            margin-right: 12px;
            font-size: 18px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .demos-section {
            margin: 25px 0;
        }

        .demos-title {
            font-size: 16px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 15px;
        }

        .demo-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .demo-tag {
            padding: 8px 16px;
            background: #f3f4f6;
            border-radius: 8px;
            font-size: 14px;
            color: #374151;
            border: 1px solid #e5e7eb;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .demo-tag:hover {
            background: #e5e7eb;
            border-color: #d1d5db;
        }

        .whatsapp-btn {

            background-color: #0c829e;
  border-color: #0c829e;
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  margin-top: 0px;
  transition: background-color 0.3s, transform 0.3s;
  animation: pulse-effect 2s infinite ease-in-out;
  width:100%;
        }

        .whatsapp-btn:hover {
            background: transparent;
            border:2px solid var(--secondary-color);
            color:var(--primary-color);
        }

        .whatsapp-btn i {
            font-size: 20px;
        }

        @media (max-width: 768px) {
            .pricing-card {
                margin-bottom: 30px;
            }

            .plan-title {
                font-size: 20px;
            }

            .price {
                font-size: 36px;
            }
        }
     /* pricing*/


       @media (max-width: 575px) {
           
             .stats-card-new {
                position: relative;
                margin: 20px auto 0;
                bottom: 71px;
                left: -40px;
              }

               .blog-main-title {
                font-size: 1.5rem;
              }

              .info-content p {
                font-size: 14px;
            }

            .social-links a {
    width: 55px;
    height: 35px;
    background: rgba(255,255,255,0.2);
     border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    /* font-size: 20px; */
}
.mobile-none{
    display: none;
}

.ami-title {
    font-size: 30px;
}


.ami-content-side {
     padding: 20px 0px;
}

.pricing-card {
            height:100%!important;
            margin-top:10px!important;
        }


        }


.premium-about-section {
    background: #ffffff;
    position: relative;
}

/* Tag Pill */
.premium-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Headline */
.premium-headline {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Divider */
.premium-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}
.premium-divider .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-gradient);
    border-radius: 50%;
}
.premium-divider .line {
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 10px;
}

/* Description */
.premium-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Premium Button */
.btn-premium-action {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.2);
}
.btn-premium-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.4);
    color: #fff;
}

/* Image Stack Effects */
.premium-image-stack {
    position: relative;
    padding: 20px;
}

.main-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.main-img {
    transition: transform 0.5s ease;
}
.premium-image-stack:hover .main-img {
    transform: scale(1.05);
}

/* Floating Stats Card (Glassmorphism) */
.floating-stats-card {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.5);
}

.floating-stats-card .icon-box {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

.floating-stats-card h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.floating-stats-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

/* Decorative Background Shapes */
.shape-blob {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--primary-gradient);
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .premium-headline { font-size: 2.2rem; }
    .floating-stats-card { right: 20px; bottom: 10px; }
}

/* Section Header */
.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-display-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
}

.premium-lead {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Premium Outline Button */
.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-premium-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* Service Card Design */
.service-card-premium {
    height: 100%;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    z-index: 1;
}

.service-card-premium::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 0%;
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(79, 70, 229, 0.2);
}

.service-card-premium:hover::before {
    height: 100%;
}

/* Icon Styling */
.service-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 18px;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.service-card-premium:hover .icon-shape {
    transform: rotate(90deg);
    background: var(--primary-color);
    opacity: 0.2;
}

.service-icon-wrapper img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    z-index: 2;
}

/* Content Styling */
.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.service-title a {
    color: var(--text-main);
    text-decoration: none;
    transition: 0.3s;
}
.service-title a:hover {
    color: var(--primary-color);
}

.service-text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer Link */
.read-more-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more-link i {
    width: 25px;
    height: 25px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    transition: all 0.3s ease;
}

.service-card-premium:hover .read-more-link i {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
    .premium-display-title { font-size: 1.8rem; }
    .service-card-premium { padding: 25px; }
}



/*==============*/
.premium-blog-section {
    background-color: var(--it-gray) !important;
}

/* Section Header Styles */
.premium-tag {
    color: var(--it-blue-light);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
}

.text-accent-red {
    color: var(--it-red);
}

.blog-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--it-blue-dark);
}

/* Card Design */
.blog-card-new {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.blog-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 45, 91, 0.1);
    border-color: var(--it-blue-light);
}

/* Image Hover Effects */
.blog-img-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-new:hover .blog-img {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--it-red);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* Card Body */
.blog-body {
    padding: 25px;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    gap: 15px;
}

.blog-meta i {
    color: var(--it-blue-light);
    margin-right: 5px;
}

.blog-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 15px 0;
    line-height: 1.4;
}

.blog-title a {
    text-decoration: none;
    color: var(--it-blue-dark);
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--it-red);
}

.blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Card Footer */
.blog-footer {
    padding: 20px 25px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.read-more-btn {
    text-decoration: none;
    color: var(--it-blue-dark);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-card-new:hover .read-more-btn {
    color: var(--it-red);
}

.blog-card-new:hover .read-more-btn i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-main-title { font-size: 2rem; }
}
/*==============*/










/*======  whychoose us ========*/
.premium-why-choose {
    background-color: #fff;
    position: relative;
}

/* Image Decoration */
.choose-us-img-container {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(18, 103, 157, 0.2);
}

.shape-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background-color: var(--it-blue);
    border-radius: 30px;
    z-index: 1;
    opacity: 0.1;
}

.experience-badge {
    position: absolute;
    top: 40px;
    left: -20px;
    background: var(--it-red);
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 10px 25px rgba(227, 30, 37, 0.3);
}

.experience-badge .num { font-size: 24px; font-weight: 800; }
.experience-badge .txt { font-size: 12px; font-weight: 500; }

/* Content Styles */
.premium-tag {
    display: inline-block;
    padding: 5px 20px;
    background: rgba(18, 103, 157, 0.1);
    color: var(--it-blue);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title { color: #0f172a; }

/* Feature Items */
.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.icon-circle {
    min-width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--it-red);
    font-size: 16px;
    transition: 0.3s;
}

.feature-item:hover .icon-circle {
    background: var(--it-red);
    color: #fff;
    border-color: var(--it-red);
}

.feature-text h6 {
    margin: 0;
    font-weight: 700;
    color: #1e293b;
}

.feature-text p {
    font-size: 13px;
    color: #64748b;
    margin-top: 5px;
}

/* IT Primary Button */
.btn-it-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: var(--it-blue);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(18, 103, 157, 0.2);
}

.btn-it-primary:hover {
    background: var(--it-red);
    color: #fff;
    transform: translateY(-3px);
}

.main-img {
    transition: transform 0.5s ease;
    height: 750px;
    object-fit: cover;
}

/* Responsive Customization */
@media (max-width: 991px) {
    .experience-badge { left: 10px; top: 10px; padding: 10px; }
    .section-title { font-size: 2.2rem; }
}
/*======  whychoose us ========*/










/*================*/
/* Hero Section Styles */
.service-detail-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hero-img-container {
    position: relative;
    padding: 20px;
}

.experience-box {
    position: absolute;
    bottom: 20px;
    right: 0px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid var(--it-red);
}

.experience-box i { color: var(--it-red); font-size: 20px; }
.experience-box span { font-weight: 700; color: var(--it-blue); }

.premium-tag-small {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(18, 103, 157, 0.1);
    color: var(--it-blue);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-display-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--it-blue);
    line-height: 1.2;
}

.premium-divider-red {
    width: 60px;
    height: 4px;
    background: var(--it-red);
    border-radius: 10px;
}

/* Feature Cards Style */
.feature-module-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(18, 103, 157, 0.1);
    border-color: var(--it-blue);
}

.module-icon-box {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.feature-module-card:hover .module-icon-box {
    background: var(--it-blue);
    transform: rotateY(180deg);
}

.module-icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.module-name {
    color: var(--text-dark);
    font-size: 1.25rem;
}

.text-accent-red {
    color: var(--it-red);
}

/* Button Customization */
.btn-it-primary {
    display: inline-flex;
    padding: 12px 28px;
    background: var(--it-blue);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.btn-it-primary:hover {
    background: var(--it-red);
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .service-display-title { font-size: 2.2rem; }
    .feature-module-card { padding: 20px; }
}
/*================*/
