.home-section {
    padding: 20px 0;
}

.home-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Banner Section */
.banner-section {
    position: relative;
    width: 100%;
    min-height: 470px;
    background: url('https://sidsamgroup.com/wp-content/uploads/2025/12/banner_bg.png')
                center / cover no-repeat;
    overflow: visible;
}
/* Inner Content */
.banner-content {
    display: flex;
    height: 100%;
    margin: 0px 80px;   /* TOP/BOTTOM: 20px | LEFT/RIGHT: 80px */
    box-sizing: border-box;
}

.banner-left-swiper {
    width: 70%;
    overflow: hidden;
}

.banner-left-slide {
    height: 100%;
    width: 100%;
    display: flex;
    padding-left: 12px;
    padding-right: 12px;
    flex-direction: column;
}




.banner-left {
    position: relative;
    width: 70%;
    background: #ffffff;
    padding: 53px 0px 22px 0px;
    box-sizing: border-box;

    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}


/* Top horizontal split */
.banner-left-top {
    display: flex;
    width: 100%;
    margin-bottom: 0px; /* spacing between top and image */
    gap: 10px; /* optional gap between 60% and 40% */
 
}

/* Left 60% */
.left-top-60 {
    width: 65%;
    margin-left: 20px; /* left margin for the whole block */
    position: relative; /* for line positioning */
}
.left-top-40 {
    width: 35%;
    background: #FFFFFF;
    box-shadow: 0px 3.59px 12.55px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden; /* 🔥 THIS IS IMPORTANT */
}

/* Heading wrapper */
.product-output-heading-wrapper {
    height: 36px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    
    padding: 0 20px;

    /* Match parent radius */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* Text */
.product-output-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14.35px;
    text-transform: uppercase;
    color: #FFFFFF;

    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}



.product-output-images {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    padding-bottom: 12px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-output-images img {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.output-item {
    display: flex;
    flex-direction: column;  /* Image on top, text below */
    align-items: center;     /* Center both image and text */
}

.output-item img {
    width: 88px;
    height: 88px;
    object-fit: cover;
}

.output-text {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 120%;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #161616;
}

.output-divider {
    width: 1px;                /* thickness */
    height: 80%;              /* match the image height */
    background-color: #A6A6A6;
    margin: 7px 15px 20px 15px; /* top, left/right, bottom */
}


.left-top-60 p {
    margin: 0; /* remove default margin */
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
    line-height: 133%;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: uppercase;
    background: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Add line below the last <p> */
.left-top-60::after {
    content: '';
    display: block;
     width: 60%; /* line width 60% */
    height: 1px;
    margin-top: 10px; /* optional spacing from last <p> */
    border-top: 1px solid;
    border-image-source: linear-gradient(90deg, #E31E24 -5.84%, #173E83 54.92%, rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1;
}

.banner-left-bottom {
    width: 100%;            /* Full width container */
    margin-top: auto;       /* Push to bottom */
    display: flex;
    justify-content: flex-start; /* 👈 LEFT align image */
    align-items: flex-end;       /* Bottom align image */
}

.banner-left-bottom img {
    max-width: 100%;        /* Prevent overflow */
    width: auto;            /* Keep natural width */
    height: auto;
    display: block;
}


/* Right section */
.banner-right {
    width: 30%;
    display: flex;
    padding-left: 12px;
    margin-top: 50px;
    background: #FFFFFF;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    flex-direction: column;   /* 👈 THIS IS THE KEY */
    align-items: flex-start;  /* left aligned */
    justify-content: center;  /* vertically center inside banner */
}

/* Inner gradient box inside banner-left */
.banner-left-box {
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 20px; 
    padding-left: 20px; 
    padding-right: 20px; 
    background: linear-gradient(
        138.41deg,
        #D4ECFF 2.81%,
        #FFFFFF 98.63%
    );
    border: 4px solid rgba(255, 255, 255, 0.2); /* #FFFFFF33 */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 23px;
    box-sizing: border-box;
}

/* Line One */
.connect-heading {
    display: block;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 30px;
    text-transform: capitalize;
    line-height: 1.1;

    background: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Line Two */
.connect-subheading {
    display: block;
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: 15px;
    text-transform: capitalize;

    background: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gradient Divider Line */
.heading-divider {
    display: block;
    margin: 5px auto 0;
    border-top: 0.5px solid;
    border-image-source: linear-gradient(
        90deg,
        #E31E24 -20.51%,
        #173E83 65.23%,
        #FFFFFF 118.14%
    );
    border-image-slice: 1;
}

.form-heading-wrapper {
    text-align: center;
    margin-bottom: 12px;
}

/* Form spacing */
.banner-form {
    width: 100%;
}

/* Live Demo Vertical Button */
.live-demo-btn {
    position: absolute;
    left: 24px !important;
    top: 50%;

    transform: translate(-50%, -50%) rotate(-90deg);
    transform-origin: center;

   /* Background */
    background: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    background-blend-mode: overlay;
    padding: 10px 20px;

    /* Typography */
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #FFFFFF;
    letter-spacing: 0;

    border-radius: 0 0 10px 10px;

    text-decoration: none;
    white-space: nowrap;

    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.18);

    z-index: 9999;
}



/* About Section */
.about-section {
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 30px;           /* remove bottom padding */
    margin-bottom: 0;            /* remove bottom margin if any */
    position: relative;

    background-image: url('https://sidsamgroup.com/wp-content/uploads/2025/12/about_us_bg.png');
    background-repeat: no-repeat;
    background-position: bottom center; /* bottom aligned */
    background-size: auto;               /* keep original image height */
}

/* About Content */
.about-content {
    padding: 80px 0;
    background: #ffffff;
}
/* About Content Layout */
.about-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    gap: 40px;
}

/* Tag */
.about-tag {
    background-color: #F0F3FF;
    border-radius: 60px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    font-family: 'Inter', sans-serif;
    font-weight: 300; /* Light */
    font-size: 16px;
    color: #000000;

    text-align: center;
}

/* About Us Heading */
.about-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 48px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    position: relative;
    padding-bottom: 14px;

    /* Gradient text */
    background: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Icon */
.about-heading-icon {
    width: 24px;
    height: auto;
}

/* Gradient underline till icon */
.about-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%; /* EXACTLY till icon */
    height: 1px;

    border-bottom: 0.5px solid transparent;
    border-image-source: linear-gradient(
        90deg,
        #E31E24 -31.56%,
        #173E83 114.41%
    );
    border-image-slice: 1;
}


.about-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* left aligned */
    gap: 14px;
    margin-bottom: 20px;
}
.about-left{
    padding-right: 90px;
}

.about-left p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    vertical-align: middle;
    color: #161616;
}
.about-left p:first-of-type {
    margin-top: 40px;
}

.about-left p + p {
    margin-top: 56px;
}
/* Highlighted text inside About paragraph */
.about-left .about-highlight {
    font-weight: 600; /* SemiBold */
}

/* Years of Excellence Badge */
.years-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    width: 270px;
    height: 82px;

    padding: 0 20px; /* keeps content centered horizontally */
    border-radius: 15px;
    border: 0.5px solid #C8C8C8;
    box-shadow: 2px 7px 10px 0px #00000014;

    background: #ffffff;
}


/* Years Badge Icon */
.years-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* 37+ Count */
.years-count {
    color: #000000;
    font-family: 'Sora', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 32px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

/* Years of Excellence Text */
.years-text {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* Regular */
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.about-buttons {
    margin-top: 56px;
    display: flex;
    align-items: flex-end; /* Align items to bottom */
}


/* Read More Outline Button */
.btn.btn-outline {
    background: transparent;
    border: none;
    padding: 0;

    display: inline-flex;
    align-items: center;
    margin-left: 64px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #161616;

    text-decoration: none;
    position: relative;
}

/* Text + Arrow wrapper */
.btn.btn-outline .btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 6px;
}

/* Right Arrow */
.btn.btn-outline .btn-text::after {
    content: '→';
    font-size: 22px;
    line-height: 1;
}

/* Underline (Text + Arrow) */
.btn.btn-outline .btn-text::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: #161616;
}



/* Image */
.about-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* About Stats Container */
.about-stats {
    margin-top: 50px;            /* spacing from above section */
    height: 160px;
    display: flex;
    align-items: center;         /* vertically center the grid */
    border: 1px solid #D8DBE0;
    background: #F8F8F8;
    border-radius: 10px;
    padding: 0 20px;             /* optional horizontal padding */
}

/* Stats Grid Full Width */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    text-align: center;
    width: 100%;                       /* full width of container */
    max-width: 1200px;                 /* optional max width */
    margin: 0 auto;                     /* center in container */
    gap: 0;                             /* no gap for divider alignment */
    justify-items: center;              /* center content in each column */
}

/* Each Stat Item */
.stats-grid .stat-item {
    position: relative;           /* needed for divider */
    display: flex;
    padding-right: 40px;
    flex-direction: column;
    justify-content: center;
}

/* Vertical Dividers Between Columns */
.stats-grid .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;                     /* vertical center */
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 90px;
    background-color: #A8A8A8;
}

/* Stat Number (h3) */
.about-stats .stat-item h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600; /* SemiBold */
    font-size: 40px;
    line-height: 100%;
    color: #000000;
    margin: 0;              /* reset margin */
}

/* Stat Description (p) */
.about-stats .stat-item p {
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* Regular */
    font-size: 24px;
    line-height: 100%;
    color: #000000;
    margin-top: 20px;       /* spacing from number */
    margin-bottom: 0;
}

/* Responsive: Stack stats on mobile */
@media (max-width: 768px) {
    .about-stats {
        height: auto;
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr; /* single column */
    }

    /* Remove dividers on mobile */
    .stats-grid .stat-item:not(:last-child)::after {
        display: none;
    }
}


/* Industries Section */
.industries-section {
    padding: 100px 80px;
    background: #fff;
}

/* Wrap everything */
.industries-heading-wrap {
    text-align: center;  /* centers all inline/inline-block elements */
    margin-bottom: 50px;
}

/* Tag */
.industries-tag {
    display: inline-block;   /* shrink to content width */
    text-align: center;
    background: #F0F3FF;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 45px;
    padding: 0 25px;
    border-radius: 60px;
    margin-bottom: 20px;     /* space below tag */
}

/* Heading */
.industries-heading {
    display: block;          /* own line */
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 150%;
    letter-spacing: 0;
    background: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;     /* space below heading */
}

/* Decorative Image */
.industries-heading-image {
    display: block;          /* own line */
    margin: 0 auto;          /* center horizontally */
    max-width: 100%;
    width: 500px;
    height: auto;
}


/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Industry Card */
.industry-card {
    background: #ffffff;                    
    border: 1px solid #F3F3F3;            
    border-radius: 40px;                   
    box-shadow: 3px 3px 25px 1px #00000012; 
    padding: 22px;                        
    text-align: center;
    transition: all 0.3s ease;
}

/* Hover effect (optional) */
.industry-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


/* Card Image */
.industry-card img {
    height: 300px;       /* fixed height */
    width: auto;
    object-fit: cover;   /* maintain aspect ratio and cover area */
    border-radius: 20px; /* optional rounded corners for image */
}

/* Card Heading */
.industry-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;    /* Semi Bold */
    font-size: 24px;
    line-height: 150%;
    text-align: center;
    color: #000000;
    margin-top: 20px;    /* top spacing from image */
}

.industry-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;    /* Light */
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #161616;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Read More Button */
.industry-btn {
    display: inline-block;
    border: 0.5px solid #161616;
    font-family: 'Inter', sans-serif;
    font-weight: 300;    /* Light */
    font-size: 16px;
    line-height: 150%;
    color: #161616;
    text-align: center;
    padding: 10px 30px;  /* top/bottom 10px, left/right 30px */
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effect */
.industry-btn:hover {
    background-color: #161616;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.machine-output-section {
    position: relative;
    padding-left: 0px;
    padding-right: 0px;
    background-image: url('https://sidsamgroup.com/wp-content/uploads/2025/12/machine_by_material_bg.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto; /* full width, no vertical stretch */
}

.machine-output-content {
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 100px;
}

/* Grid Layout */
.machine-output-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
}

/* Tag */
.machine-output-tag {
    background-color: #F0F3FF;
    border-radius: 60px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    font-family: 'Inter', sans-serif;
    font-weight: 300; /* Light */
    font-size: 16px;
    color: #000000;

    text-align: center;
}

/* Left Content */
.machine-output-left p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #161616;
    margin-top: 40px;
    padding-right: 70px;
}
.machine-left p:first-of-type {
    margin-top: 40px;
}

.machine-left p + p {
    margin-top: 56px;
}

/* Heading */
.machine-output-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 48px !important;
    line-height: 150%;
    margin-top: 20px;

    background: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    display: flex;  
    flex-direction: column;   /* stack text + icon vertically */
    align-items: flex-start;  /* change to center if needed */
}

/* Force text lines to break */
.machine-output-heading span {
    display: block;
}

/* Icon below heading */
.machine-output-heading-icon {
    margin-top: 15px;
    max-width: 100%;
    width: 400px;
    height: auto;
}
/* Machine Output CTA Button */
.machine-output-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    box-shadow: 1px 3px 8.9px 0px #485F7E66;

    border-radius: 8px;
    padding: 24px 32px;

    text-decoration: none;
}

/* Button Text */
.machine-output-btn .btn-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
    white-space: nowrap;
}

/* Button Icon */
.machine-output-btn .btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}


/* ============================= */
/* Our Products */
/* ============================= */

.products-section {
    padding: 100px 80px;
    background: #ffffff;
}

/* Heading Wrapper */
.products-heading-wrap {
    text-align: center;
    margin-bottom: 60px;
}

/* Tag */
.products-tag{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #F0F3FF;
  border-radius: 60px;

  padding: 10px 20px;

  font-size: 14px;
  color: #000;
}


/* Heading */
.products-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 150%;
    background: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

/* Decorative Image */
.products-heading-image {
    display: block;
    margin: 0 auto;
    max-width: 260px;
    width: 100%;
}
.products-swiper {
    width: 100%;
    padding: 50px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease;
}
/* Wrapper to center everything */
.products-navigation-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* space between swiper buttons and explore button */
    margin-top: 20px;
}

.products-swiper-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.custom-swiper-prev,
.custom-swiper-next {
    width: 48px;
    height: 48px;
    border: 0.5px solid #B5B5B5;
    border-radius: 10px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px 18px; /* Updated size */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Assign images */
.custom-swiper-prev {
    background-image: url('https://sidsamgroup.com/wp-content/uploads/2025/12/home_event_left_arrow.png');
}

.custom-swiper-next {
    background-image: url('https://sidsamgroup.com/wp-content/uploads/2025/12/home_event_right_arrow.png');
}

.explore-machines-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* space between text and image */
    margin-top: 20px; /* spacing below the prev/next buttons */
    padding: 0 20px;
    height: 50px;
    border: 0.5px solid #B5B5B5;
    border-radius: 10px;
    box-shadow: 0px 6px 10px 0px #0000001A;
    background-color: #fff;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: normal; /* Semi Bold fallback */
    font-size: 20px;
    line-height: 150%;
    text-transform: capitalize;
    color: #000000;
}

.explore-machines-btn img.explore-btn-icon {
    width: 20px; /* update later if needed */
    height: 15px;
}
/* Hide all titles initially */
.product-card .product-title {
    display: none;
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #000;
    margin-top: 10px;
}

/* Show only title for active slide */
.swiper-slide-active .product-title {
    display: block;
}



/* ============================= */
/* Certified for Excellence */
/* ============================= */

.certification-section {
    padding: 100px 80px;
    background: #ffffff;
}

/* Heading Wrapper */
.certification-heading-wrap {
    text-align: center;
    margin-bottom: 60px;
}

/* Tag */
.certification-tag{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #F0F3FF;
  border-radius: 60px;

  padding: 10px 20px;

  font-size: 14px;
  color: #000;
}


/* Heading */
.certification-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 150%;
    background: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

/* Decorative Image */
.certification-heading-image {
    display: block;
    margin: 0 auto;
    max-width: 260px;
    width: 100%;
}

/* ============================= */
/* Cards Layout */
/* ============================= */

.certification-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

/* Card */
.certification-card {
    display: flex;
    gap: 20px;
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #F3F3F3;
    box-shadow: 3px 3px 25px 1px rgba(0, 0, 0, 0.07);
    align-items: flex-start;
}

/* Card Image */
.certification-card-image img {
  
    object-fit: contain;
}

/* Card Content */
.certification-card-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    margin-bottom: 4px;
}

/* Card Tag */
.certification-card-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #173E83;
    margin-bottom: 8px;
}

/* Description */
.certification-card-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 150%;
    color: #161616;
}

/* ============================= */
/* CTA Button */
/* ============================= */

.certification-cta{
  display: flex;
  justify-content: center; /* optional – center align */
}

/* .certification-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #161616;
    border: 1px solid #161616;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
} */



.certification-btn{
  width: 424px;
  height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 10px 20px;

  background: #FFFFFF;
  border: 0.5px solid #B5B5B5;
  border-radius: 10px;

  box-shadow: 0px 6px 10px 0px rgba(0,0,0,0.1);

  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 600;

  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.certification-btn img {
    width: 16px;
    height: auto;
}

/* Hover */
.certification-btn:hover {
    background: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    color: #ffffff;
    border-color: transparent;
}

/* ============================= */
/* Responsive */
/* ============================= */

@media (max-width: 1024px) {
    .certification-cards {
        grid-template-columns: 1fr;
    }

    .certification-card {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .certification-heading {
        font-size: 36px;
    }

    .certification-section {
        padding: 80px 0;
    }
}




/* ============================= */
/* Our Global Impact */
/* ============================= */


.global-impact{
  position:relative;
  background:#fff;
  padding:20px 20px 50px;
  text-align:center;
  border-radius:0 0 100% 100% / 30%;
}

/* HEADER */
.gi-header{
  margin-bottom:40px;
}

.gi-pill{
  display:inline-block;
  padding:8px 18px;
  background:#fff;
  border-radius:30px;
  font-size:14px;
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.gi-header h2{
  margin-top:20px;
  font-size:48px;
  font-weight:700;
}

.gi-header h2 span{
  background:linear-gradient(90deg,#ff3c3c,#6a5cff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  position:relative;
}

.gi-header h2 span::after{
  content:'';
  position:absolute;
  width:12px;
  height:12px;
  border-left:2px solid #6a5cff;
  border-bottom:2px solid #6a5cff;
  bottom:-10px;
  right:-14px;
}

/* MAP */
.gi-map-wrap{
  max-width:1100px;
  margin:0 auto 50px;
}

.gi-map{
  width:100%;
  height:auto;
  display:block;
}

/* BUTTON */
.gi-btn-wrap{
  text-align:center;
}

.gi-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 40px;
  background:#fff;
  color:#000;
  text-decoration:none;
  border-radius:10px;
  font-weight:600;
  box-shadow:0 6px 15px rgba(0,0,0,0.2);
  transition:0.3s;
}

.gi-btn:hover{
  transform:translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:768px){
  .gi-header h2{
    font-size:32px;
  }
  .global-impact{
    border-radius:0 0 100% 100% / 20%;
  }
}


.gi-map-wrap{
  max-width:1100px;
  margin:0 auto 50px;
  padding:60px 40px;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0) 0%,
    #F6FAFF 65%
  );

  border-radius:50%;
}



/* ============== TESTIMONIALS SECTION */
.testimonials-section{
    padding: 70px 80px 90px 80px;
      text-align:center;
}

/* HEADER */
.testi-pill{
  display:inline-block;
  padding:8px 18px;
  background:#fff;
  border-radius:30px;
  font-size:14px;
  margin-bottom:20px;
}

.testi-header h2{
  font-size:48px;
  font-weight:700;
}

.testi-header h2 span{
  background:linear-gradient(90deg,#ff3c3c,#4f7cff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  position:relative;
}

.testi-header h2 span::after{
  content:'';
  position:absolute;
  width:14px;
  height:14px;
  border-left:2px solid #4f7cff;
  border-bottom:2px solid #4f7cff;
  bottom:-12px;
  right:-16px;
}

/* CARDS */
.testi-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin:60px auto;
}

.testi-card {
    background: #f6fbff;
    border-radius: 10px;
    border: 1px solid #CADFFF;
    padding: 30px;
    text-align: left;
}

.stars{
  color:#ffb400;
  font-size:20px;
  margin-bottom:15px;
}

.testi-text{
  font-size:16px;
  color:#222;
  line-height:1.6;
}

.testi-divider{
  height:1px;
  background:#bbb;
  margin:25px 0;
}

/* USER */
.testi-user{
  display:flex;
  align-items:center;
  gap:15px;
}

.avatar{
  width:50px;
  height:50px;
  border-radius:50%;
  border:2px solid #cce0ff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.avatar img{
  width:30px;
}

.testi-user h4{
  margin:0;
  font-size:18px;
}

.testi-user span{
  font-size:14px;
  color:#555;
}

/* BUTTON */
.testi-btn-wrap{
  text-align:center;
}

.testi-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:424px;
  height:50px;
  background:#fff;
  color:#000;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(255,255,255,0.2);
}

/* RESPONSIVE */
@media(max-width:900px){
  .testi-cards{
    grid-template-columns:1fr;
  }
  .testi-header h2{
    font-size:32px;
  }
  .testi-btn{
    width:100%;
  }
}


/* ============================= */
/* Latest Blogs and Events */
/* ============================= */

.home-section.latest-news {
    padding-left: 80px;
    padding-right: 80px;
    background-color: #FFFFFF;
}

.latest-news {
    padding: 100px 0;
    background-color: #FFFFFF;
}

/* Heading */
.latest-news-heading-wrap {
    text-align: left;
    margin-bottom: 60px;
}

.latest-news-tag{
    background-color: #F0F3FF;
    border-radius: 60px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    font-family: 'Inter', sans-serif;
    font-weight: 300; /* Light */
    font-size: 16px;
    color: #000000;

    text-align: center;
}

.latest-news-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 48px !important;
    line-height: 150%;
    margin-top: 20px;

    background: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    display: flex;  
    flex-direction: column;   /* stack text + icon vertically */
    align-items: flex-start;  /* change to center if needed */
}

.latest-news-heading-icon {
    margin-top: 15px;
    max-width: 100%;
    width: 548px;
    height: auto;
}

/* Grid */
.latest-news-grid {
    display: flex;
    margin-top: 80px;
    gap: 32px;
}

/* Left / Right Widths */
.latest-news-left {
    width: 65%;
}
/* Header Row */
.blogs-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* Title 60% */
.blogs-title {
    display: flex;
    align-items: flex-end;
    width: 60%;
}

/* Blogs Heading */
.blogs-title h3 {
    background: #161616;
    width: 124px;
    height: 48px;
    padding: 6px 30px;
    color: #ffffff;

    /* Typography */
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

/* Divider Line */
.blogs-divider {
    flex: 1;
    border: 0.5px solid #A3A3A3;
}

/* Actions 40% */
.blogs-actions {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 20px;
    gap: 20px;
}

/* Navigation buttons */
.blog-nav {
    display: flex;
    gap: 10px;
}

/* Prev & Next Buttons */
.nav-btn.prev-btn,
.nav-btn.next-btn {
    background: #FFFFFF;
    border: 0.5px solid #B5B5B5;
    border-radius: 10px;
    width: 48px;
    height: 48px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0; /* IMPORTANT: remove padding */
}

/* Arrow Image */
.blog-nav .nav-btn img {
    width: 11px;
    height: 18px;
    object-fit: contain;
    display: block;
}
.see-all-btn {
    background: #FFFFFF;
    border: 0.5px solid #B5B5B5;
    border-radius: 10px;
    box-shadow: 0px 6px 10px 0px #0000001A;

    padding: 10px 20px;

    font-family: 'Inter', sans-serif;
    font-weight: 600; /* Semi Bold */
    font-size: 20px;
    line-height: 1.5;

    color: #161616;
    text-align: center;
    vertical-align: middle;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    text-decoration: none;
    cursor: pointer;
}
.see-all-btn img {
    width: 20px;
    height: 15px;
    object-fit: contain;
    display: block;
}


/* Blogs Grid */
.blogs-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* One / Two blogs at a time */
    gap: 24px;
}

/* Blogs Horizontal Wrapper */
.horizontal-blogs {
    display: flex;
    gap: 20px; /* Space between cards */
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* Optional: makes snapping smoother */
    padding: 20px 0;
}

/* Blog Card */
.blog-card {
    flex: 0 0 calc((100% - 20px) / 2); /* Show 2 cards at a time with gap */
    background: #FFFFFF;
    border: 1px solid #F3F3F3;
    box-shadow: 3px 3px 25px 1px #00000012;
    border-radius: 40px;
    padding: 20px;
    text-align: center;
    scroll-snap-align: start; /* Optional: for snapping */
}
/* Blog Image */
.blog-card .blog-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Blog Title */
.blog-card .blog-title {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-style: normal; /* Semi Bold */
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0;
    margin-top: 32px;
    color: #000000;
    margin-bottom: 15px;
}

/* Read More Button */
.blog-card .blog-readmore-btn {
    display: inline-block;
    border: 0.5px solid #161616;
    border-radius: 10px;
    padding: 10px 30px;
    font-family: Inter, sans-serif;
    font-weight: 300;
    margin-top: 40px;
    font-style: normal; /* Light */
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #161616;
    text-decoration: none;
}

.latest-news-right {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Header */
.events-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
}

/* Title 60% */
.events-title {
    display: flex;
    align-items: flex-end;
    width: 60%;
}

.events-title h3 {
    background: #161616;
    width: 124px;
    height: 48px;
    padding: 6px 30px;
    color: #ffffff;

    /* Typography */
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

.events-divider {
    flex: 1;
    border: 0.5px solid #A3A3A3;
}

/* Actions 40% */
.events-actions {
    width: 40%;
    display: flex;
    justify-content: flex-end;
}

/* Events list */
.events-wrapper {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.event-card-horizontal {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.event-logo {
    width: 130px;
    height: 56px;
    object-fit: cover;
    flex-shrink: 0;
}

.event-content-horizontal {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-title-horizontal {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 5px 0;
}

.event-info {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 150%;
    color: #161616;
    margin: 0;
}
.event-divider {
    border-bottom: 0.5px solid var(--Black, #161616);
    margin: 10px 0; /* spacing above/below */
    width: 100%;
}