/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #ffffff;
    color: #0c0c0c;
}

html {
    margin: 0;
    padding: 0;
}


/* CLEAN + MERGED VERSION */

/* Top Contact Bar */
.top-contact-bar {
    margin-top: 0 !important;     /* Remove white space above */
    background-color: #3A54A3;
    color: white;
    padding: 10px 5%;
    font-size: 14px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Contact spacing */
.top-contact-bar .contact-info span {
    margin-right: 20px;
}

/* Email styling */
.top-contact-bar .email-info a {
    color: inherit;
    text-decoration: none;
}

.top-contact-bar .email-info a::before {
    content: '\2709';
    margin-right: 8px;
}

@media (max-width: 780px) {

    .top-contact-bar {
        margin: 0 !important;
        padding: 6px 10px !important;
        background-color: #3A54A3;
        
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 4px; /* spacing between lines */
        text-align: center;
    }

    .top-contact-bar .contact-info span {
        display: block;
        margin: 0;
        padding: 0;
        line-height: 1.3;
    }

    .top-contact-bar .email-info {
        margin-top: 2px;
    }

    .top-contact-bar .email-info a {
        font-size: 13px;
        word-break: break-all;
    }
}


.logo img {
    height: 90px;      /* Adjust size as needed */
    width: auto;
    object-fit: contain;
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 20px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
}
.logo span {
    color: #3A54A3;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 40px;
}
.nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}
.nav-links a.active {
    color: #ff0000;
}

/* ACTION BUTTONS */
.nav-actions .signin {
    margin-right: 20px;
    text-decoration: none;
    color: #111;
}

/* Style for the hamburger icon container */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

/* Style for the hamburger lines */
.hamburger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: #000000; /* Dark color for the lines */
    position: relative;
    transition: all 0.3s ease-in-out;
}


/* Create the middle line */
.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    position: absolute;
    transition: all 0.3s ease-in-out;
}

/* Position the top and bottom lines */
.hamburger-icon::before {
    transform: translateY(-8px);
}
.hamburger-icon::after {
    transform: translateY(8px);
}

@media (max-width: 767px) {  
    .navbar {
        flex-wrap: wrap; 
        justify-content: space-between;
        padding: 10px 20px;
        align-items: center;
    }
    .menu-toggle {
        display: block; 
        order: 2; 
    }
    .nav-actions {
        display: none; 
        order: 3;
    }
    .nav-links {
        display: none; 
        width: 100%; 
        order: 3; 
        flex-direction: column; 
        text-align: center;
        background-color: #f8f8f8; 
        border-top: 1px solid #eee;
        padding: 10px 0;
    }
    .nav-links a {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        display: block;
    }
    .nav-links.open {
        display: flex; 
    }
}


@media (max-width: 767px) {
    
    .navbar {
        position: relative; 
    }

   
    .nav-links {
        
        position: absolute; 
        top: 100%; 
        right: 0;        
        width: 250px; 
        max-width: 90%; 
        display: none;      
        background-color: #fff; 
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 99; 
        padding: 10px 0; 
        
        flex-direction: column; 
        text-align: left; 
    }
    .nav-links.open {
        display: flex; 
    }

    .nav-links a {
    
        padding: 6px 15px; /* Changed from 10px to 6px (or lower) to shrink space */
        
        font-size: 0.9rem; 
        display: block;
        border-bottom: none; 
        color: #333;
        transition: background-color 0.2s;
    }
    
    .nav-links {
        padding: 5px 0; /* Reduced padding for the overall menu container */
    }
    .nav-links a:hover {
        background-color: #f5f5f5;
    }
    
    /* Ensure the logo is still constrained */
    .navbar .logo img {
        max-height: 50px;
        width: auto;
    }

    /* Optional: Hide the 'Get Started' button in the overlay to save space */
    .nav-actions {
        display: none; 
    }
    .navbar {
    position: relative;
    z-index: 9999 !important;
}

.hero-slider {
    position: relative;
    z-index: 1 !important;
}
.n2-ss-slider,
.n2-section-smartslider {
    z-index: 1 !important;
}
}

@media (max-width: 767px) {
    .ftco-footer .ftco-footer-social {
        float: none !important; 
        width: 100%; 
        display: flex;
        justify-content: left; 
        margin-top: 10px !important; 
        margin-bottom: 10px !important; 
    }
    .ftco-footer .ftco-footer-social li {
        display: inline-block; 
        margin: 0 20px; 
        padding: 0;
    }
    .ftco-footer .ftco-footer-social li a {
        font-size: 1.5rem; 
        padding: 5px; 
    }
    .ftco-footer-widget .footer-logo {
        max-height: 40px;
        width: auto;
    }
    .ftco-footer {
        padding: 3em 15px !important;
    }
}

.btn-primary {
    background: #3A54A3;
    color: white;
    padding: 12px 22px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}
.btn-primary.small {
    padding: 10px 18px;
    font-size: 14px;
}

.btn-secondary {
    border: 1.5px solid #d4d4d4;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

.badge {
    display: inline-block;
    background: #fff7f0;
    color: #ff0000;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 14px;
}

h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}
.highlight {
    color: #3A54A3;
}

.description {
    margin: 20px 0 30px;
    font-size: 17px;
    color: #444;
}



/* STATS */
.stats {
    display: flex;
    gap: 50px;
    margin-top: 20px;
}

.stat-box h2 {
    font-size: 32px;
    color: #ff0000;
}
.stat-box p {
    color: #666;
    margin-top: 6px;
}


@media (max-width: 767px) {
    
    
    .ftco-section.ftco-about {
        padding: 4em 0 !important; 
    }

    .ftco-about .col-md-6.img {
        
        padding: 0 5px !important; 
        height: 150px !important; 
        background-size: contain !important; 
        background-repeat: no-repeat !important;
        background-position: center center !important; 
    }
    
    .ftco-about .wrap-about {
        padding: 0 15px !important; 
    }
    .ftco-about .heading-section.pl-md-5 {
        padding-left: 0 !important; 
        margin-bottom: 1rem !important;
    }
    .ftco-about .heading-section p {
        margin-bottom: 1rem; 
        font-size: 0.95rem; 
        line-height: 1.6; 
    } 
    .ftco-about .heading-section h2 {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    
}

/* Normal State */
.btn.btn-primary {
    background-color: #ED2024 !important; /* Change to your desired color */
    border-color: #ED2024 !important;     /* Change to your desired color */
}

/* Hover State (When you move mouse over it) */
.btn.btn-primary:hover {
    background-color: #F44D55 !important; /* Make this slightly darker or lighter */
    border-color: #F44D55 !important;
}

.clients-section .subheading {
    /* Ensure consistency with your site's subheading style */
    color: #007bff; /* Example color */
}

.client-logo-grid {
    padding: 20px 0;
}

.client-logo-item {
    padding: 15px;
    margin: 10px;
    max-width: 180px; /* Control the size of the logo container */
    flex-grow: 1; /* Allows logos to take up space dynamically */
    text-align: center;
}

.client-logo-item img {
    max-width: 100%;
    height: auto;
    opacity: 0.6; /* Start slightly faded */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
    display: block; /* Remove any potential bottom spacing */
}

.client-logo-item img:hover {
    opacity: 1; /* Full opacity on hover */
    
    transform: scale(1.05); /* Slight scale-up for animation */
}

/* Optional: If you want a full-width continuous slider/animation, you'd need a separate JS/CSS library for that, similar to how the testimonial carousel was set up (using owl-carousel or similar). *
/
/* Defines the scrolling keyframes */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    /* Moves the entire track left by the width of one set of 13 logos */
    100% {
        transform: translateX(calc(-250px * 13)); 
    }
}

.logo-slider {
    /* Set the viewport size for the slider */
    width: 100%;
    margin: auto;
    overflow: hidden; /* This hides the logos that are off-screen */
    position: relative;
    padding: 30px 0;
}

.logo-slide-track {
    /* Put all 26 slides on one line */
    display: flex;
    /* 250px width per slide * 26 total slides (13 unique * 2 for duplication) */
    width: calc(250px * 26); 
    animation: scroll 50s linear infinite; /* Adjust '50s' to change the speed (higher number = slower) */
}

.logo-slide {
    /* Define the size for each logo container */
    width: 250px;
    height: 100px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-width: 90%;
    max-height: 100%;
    /* Grayscale and opacity effect */
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-slide img:hover {
    
    opacity: 1;
}

/* Fades out the ends of the slider for a cleaner look */
.logo-slider::before,
.logo-slider::after {
    /* Adjust background color if your page isn't pure white */
    background: linear-gradient(to right, rgba(245, 245, 245, 1) 0%, rgba(245, 245, 245, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 10%; /* Controls the width of the fade */
    z-index: 2;
    top: 0;
}

.logo-slider::after {
    right: 0;
    transform: rotateZ(180deg);
}

.logo-slider::before {
    left: 0;
}
/* New style to ensure the wrapper spans full width */
.logo-slider-wrapper {
    /* Ensures it takes the full viewport width */
    width: 100vw; 
    /* Centers the wrapper relative to the viewport width */
    position: relative; 
    left: 50%; 
    right: 50%;
    /* This line is the key to breaking out of the parent container */
    margin-left: -50vw; 
    margin-right: -50vw;
    /* Maintain vertical padding */
    padding: 30px 0; 
}

/* Ensure the logo-slider is 100% of its new parent (logo-slider-wrapper) */
.logo-slider {
    width: 100%; /* Should already be 100% */
    overflow: hidden;
    /* Other styles for logo-slider remain the same */
}

/* You will need to update the background colors for the fade effect 
   to match your page background color (likely #f5f5f5 based on your HTML) */
.logo-slider::before,
.logo-slider::after {
    background: linear-gradient(to right, rgba(245, 245, 245, 1) 0%, rgba(245, 245, 245, 0) 100%);
    /* ... rest of the fade styles ... */
}
/* 1. Redefine the image container. 
      We are targeting the original image area but using a new class 
      to ensure it focuses on the icon/feature image size.
*/
.car-wrap .img-container {
    height: 150px; /* Define a fixed height for the icon area */
    width: 100%;
    margin-bottom: 20px; 
    display: flex; /* Ensure centering works */
    align-items: center;
    justify-content: center;
    /* Remove background-size, background-repeat, etc., inherited from the old car styles */
    background: none !important;
}

/* 2. Style the actual image/icon inside the container.
      This is the key to preventing them from being oversized.
*/
.car-wrap .img-container .feature-icon {
    max-width: 80%; /* Limit the icon size relative to its container */
    max-height: 100%; /* Ensure it fits vertically */
    height: auto;
    width: auto;
    object-fit: contain; /* Ensures the entire icon is visible without cropping */
}

.ftco-about .container {
  max-width: 100% !important;
  padding-left: 0;
  padding-right: 0;
}

.ftco-about .row {
  margin-left: 0;
  margin-right: 0;
}

.ftco-about .col-md-6.wrap-about {
  padding: 40px 60px; /* increase space so text spreads wider */
}

.heading-section {
  max-width: 900px; /* prevents narrow text */
  width: 100%;
}

.ftco-about .img {
  background-size: contain !important; 
  background-repeat: no-repeat;
  background-position: center;
  min-height: 400px; /* adjust as needed */
}

/* Styling for the icon circle and positioning */
.services-2 {
    padding: 30px 15px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.services-2:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.services-2 .icon {
    width: 80px;
    height: 80px;
    background: #007bff; /* Use your primary/teal color */
    margin: 0 auto;
    border-radius: 50%;
    margin-bottom: 20px;
}

.services-2 .icon span {
    color: #fff;
    font-size: 30px;
}

.services-2 h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.services-2 p {
    color: #888;
    font-size: 0.95rem;
}

.services-2 .small-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
}

.services-2.w-100 {
    height: 100%;
}

/* Mobile adjustments for better spacing */
@media (max-width: 767px) {
    .services-2 {
        padding: 20px 10px;
    }
    .services-2 .icon {
        width: 60px;
        height: 60px;
    }
    .services-2 .icon span {
        font-size: 24px;
    }
}


.modal-dialog.modal-lg {
    max-width: 900px; 
}

.modal-content {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
}

.modal-header {
    background-color: #5b8fdd;
    color: #fff;
    border-bottom: none;
    padding: 20px 30px;
    border-radius: 12px 12px 0 0;
}

.modal-header .modal-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.modal-header .close {
    color: #fff;
    opacity: 0.8;
    text-shadow: none;
}

/* Modal Body Content */
.modal-body {
    padding: 30px 30px 20px 30px;
}

.modal-body p.lead {
    font-size: 1.1rem;
    color: #444;
    border-left: 4px solid #00bcd4; /* Teal accent line */
    padding-left: 15px;
}

/* ====================================
   2. Features List Styling
   ==================================== */

.features-list {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    font-size: 1rem;
    margin-bottom: 8px;
    padding-left: 25px; /* Space for the custom icon */
    position: relative;
    font-weight: 500;
}

/* Styling the checkmark icon */
.features-list li .icon-check {
    color: #28a745; /* Success Green */
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

/* ====================================
   3. CTA Footer Styling
   ==================================== */

.modal-footer {
    background-color: #f8f8f8; /* Light gray footer background */
    border-top: 1px solid #eee;
    padding: 15px 30px;
    border-radius: 0 0 12px 12px;
}

.modal-footer h5 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.modal-footer .btn-primary {
    background-color: #ffc107; /* Yellow CTA button */
    border-color: #ffc107;
    color: #333;
    font-weight: 700;
    transition: all 0.3s;
}

.modal-footer .btn-primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

/* ====================================
   4. Mobile Adjustments
   ==================================== */

@media (max-width: 767px) {
    .modal-dialog {
        margin: 0.5rem;
    }
    .modal-dialog.modal-lg {
        max-width: 100%;
    }
    .modal-body .row {
        /* Stack the image and text on top of each other */
        flex-direction: column;
    }
    .modal-body .col-md-5,
    .modal-body .col-md-7 {
        padding: 0;
    }
    .modal-body img {
        margin-bottom: 20px;
    }
    .modal-footer {
        flex-direction: column;
        text-align: center;
    }
    .modal-footer h5 {
        margin-bottom: 10px !important;
    }
    .modal-footer .btn-primary {
        width: 100%;
    }
}

.small-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; 
    color: white; 
    text-decoration: none; 
    
    /* Aesthetics */
    border-radius: 5px;
    border: 1px solid #007bff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.small-link:hover {
    background-color: #0056b3; 
    border-color: #0056b3;
}

/* --- WhatsApp Floating Button Styles --- */

.whatsapp-float {
    /* Positioning */
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px; /* Distance from the bottom of the screen */
    right: 40px;  /* Distance from the right of the screen */
    
    /* Styling */
    background-color: #25d366; /* WhatsApp Green */
    color: #FFF;
    border-radius: 50px; /* Makes it perfectly round */
    text-align: center;
    font-size: 30px;
    z-index: 1000; /* Ensures it sits above all other content */
    box-shadow: 2px 2px 3px #999;
    
    /* Alignment of the icon */
    line-height: 60px; 
    transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e; /* Slightly darker green on hover */
}

/* Ensure the icon is visible - assumes you are using 'icomoon' or similar font icons */
.whatsapp-float i {
    display: block; 
    margin-top: 15px; /* Adjust if your icon is not perfectly centered */
}


/* --- Responsive Adjustment for Mobile --- */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px; /* Closer to the bottom on mobile */
        right: 20px; /* Closer to the side on mobile */
        font-size: 25px;
        line-height: 50px;
    }
    .whatsapp-float i {
        margin-top: 13px;
    }
}

/* --- Base Styling for the Card (Similar to before, but simplified) --- */
.company-profile-download {
    padding: 60px 0;
    background-color: #f7f7f7;
}

.profile-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-section {
    text-align: center;
    margin-bottom: 30px;
}

.header-section h3 {
    color: #333;
    margin-bottom: 5px;
}

.header-section p {
    color: #666;
}

/* 🚨 CSS Grid for 2 Columns (The main layout change) 🚨 */
.document-grid {
    display: grid;
    /* Forces 2 columns of equal width with a 20px gap */
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px 30px; /* 15px vertical gap, 30px horizontal gap */
}

/* Style for individual links */
.doc-link {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee; /* Visual separator */
    transition: color 0.2s;
}

.doc-link:hover {
    color: #007bff; /* Highlight on hover */
}

.doc-link i {
    font-size: 1.3rem;
    margin-right: 10px;
    color: #007bff; /* Color for the icon */
    flex-shrink: 0;
}

/* Ensure the last items don't have a border, or adjust as needed */
.document-grid .doc-link:nth-last-child(-n+2) {
    border-bottom: none;
}


/* Mobile adjustment: Collapse to a single column */
@media (max-width: 650px) {
    .document-grid {
        /* Switch to a single column on mobile */
        grid-template-columns: 1fr; 
        gap: 0; /* Remove gap between rows, use padding/margin instead */
    }
    .doc-link {
        border-bottom: 1px solid #eee; 
    }
}


/* ================================
   COO MESSAGE SECTION (UPGRADED)
===================================*/

.coo-welcome-message {
    padding: 100px 0;
    background: #eef3fa;
    font-family: "Inter", sans-serif;
}

/* Card */
.message-card {
    background: #ffffff;
    padding: 65px 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlideUp 0.9s ease-out forwards;
}

/* Fade & slide-up animation */
@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   LEFT — TEXT CONTENT
===================================*/

.message-content {
    width: 60%;
}

/* Title */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #003399;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

/* COO Message */
.coo-quote {
    font-size: 17px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 35px;

    font-family: Georgia, serif;
    font-style: italic;

    border-left: 4px solid #00AEEF;
    padding-left: 18px;
}

/* Signature */
.coo-signature {
    margin: 25px 0 35px 0;
    font-size: 17px;
    color: #222;
    font-weight: 500;
}

.coo-title {
    color: #666;
    font-size: 15px;
}

/* Button */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: #003399;
    color: #fff !important;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.25s ease;
}

.btn-read-more:hover {
    background: #001f66;
    transform: translateX(4px);
}

/* ================================
   RIGHT — PHONE IMAGE (SLIDE-IN)
===================================*/

.coo-photo {
    width: 40%;
    position: relative;

    opacity: 0;
    transform: translateX(80px);
    animation: phoneSlideIn 1s ease-out 0.4s forwards;
}

/* Slide-in animation */
@keyframes phoneSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.coo-photo img {
    width: 95%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.20);
}

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

@media (max-width: 992px) {
    .message-card {
        flex-direction: column;
        text-align: left;
        padding: 45px 30px;
    }

    .message-content {
        width: 100%;
    }

    .coo-photo {
        width: 100%;
        margin-top: 35px;
    }
}

/* Hide phone image on mobile */
@media (max-width: 768px) {

    .coo-photo {
        display: none !important;
    }

    .coo-welcome-message {
        padding: 70px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .coo-quote {
        font-size: 16px;
        padding-left: 15px;
    }
}

.services-slider-section {
    padding: 60px 0;
}

.service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    min-height: 370px;
    height: 100%;

    transition: all 0.35s ease;

    /* FIX: always visible */
    opacity: 1;
    transform: translateY(0);
}


.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 70px;
    margin-bottom: 20px;
}

.btn-learn {
    display: inline-block;
    padding: 10px 24px;
    background: #3953A4;
    color: #fff;
    border-radius: 8px;
    margin-top: auto;         /* forces it to bottom */
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-learn:hover {
    background: #3953A4;
}

/* Swiper layout */
.servicesSwiper {
    padding-bottom: 60px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #3953A4;
}

.swiper-pagination-bullet-active {
    background: #3953A4;
}

.swiper-slide-visible .service-card {
  opacity: 1;
  transform: translateY(0);
}

/* GENERAL PAGE STYLING */
body {
    font-family: "Inter", Arial, sans-serif;
    background: #f5f7fb;
    margin: 0;
    padding: 40px 20px;
    color: #1f2937;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
}

/* GRID LAYOUT */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* PRODUCT CARD STYLING */
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
}

.product-title {
    margin: 10px 0 8px;
    font-size: 20px;
    font-weight: 600;
}

.product-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: auto; /* pushes the button to the bottom */
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 10px 14px;
    background: #3953A4;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 14px;
    transition: 0.2s;
}

.btn:hover {
    background: #ffffff;
    color: rgb(255, 0, 0);
    border: #3953A4;
}

