/* ========================================= ROOT / VARIABLES ========================================= */
:root {
  --cyan: #29c3d4;
  --cyan-dark: #1fa8b8;
  --yellow: #f8cc00;
  --blue: #58b2e0;
  --dark: #1a1a1a;
  --text: #444;
  --gray: #000;
  --light-bg: #FFF5D5;
  --white: #ffffff;
  --border: #e2eef4;
  --radius: 6px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
} /* ========================================= GLOBAL UTILITIES ========================================= */
.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: "Georgia", "Times New Roman", serif;
  text-align: center;
}
.section-heading span {
  color: var(--cyan);
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 6px;
  text-align: center;
  font-family:
    "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif !important;
}
.section-subtext {
  font-size: 15px;
  color: var(--text);
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.7;
  text-align: center;
} /* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    visibility: hidden;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}




.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;               /* ab left align */
    max-width: 1200px;              /* bara container taake left side se start ho */
    width: 90%;
    z-index: 2;
    padding: 40px 20px;
    border-radius: 10px;
}

.slide-title {
    font-size: 50px;               
    font-weight: 800;               
    text-transform: uppercase;    
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: slideInUp 0.8s ease-out;
}

.slide-description {
    font-size: 20px;                
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 950px;               
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    animation: slideInUp 1s ease-out;
}

.btn-slider {
    display: inline-block;
    padding: 15px 40px;
    background-color: #F9AF40;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;      /* button text bhi template jaisa */
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-shadow: none;
    animation: slideInUp 1.2s ease-out;
}

.btn-slider:hover {
    background: white;
    border: 2px solid #F9AF40;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244, 185, 66, 0.4);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .slide-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 38px;
    }

    .slide-description {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .slider-content {
        padding: 20px 15px;
        text-align: center;
    }

    .slide-title {
        font-size: 30px;
        letter-spacing: 0;
    }

    .slide-description {
        font-size: 15px;
    }

    .btn-slider {
        padding: 12px 30px;
        font-size: 14px;
    }
}










/* Arrow Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #000;

}

.slider-arrow:hover {
    background: #F9AF40;
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 20px;
}

/* Slider Indicators - Horizontal Bars */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}

.indicator {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: #F9AF40;
    width: 30px;
}

.indicator:hover {
    background: rgba(244, 185, 66, 0.8);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .slider-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .btn-slider {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .indicator {
        width: 40px;
    }
    
    .indicator.active {
        width: 55px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-title {
        font-size: 24px;
    }
    
    .slide-description {
        font-size: 13px;
    }
    
    .slider-content {
        padding: 20px;
        width: 95%;
    }
.slider-arrow {
  display: none;
    }

}

/* About Section Styles */
.about-section {
    position: relative;
    width: 100%;
    padding-bottom: 80px;
}

.about-background {
    position: relative;
    width: 100%;
    /* height: 600px; */
    background-image: url('{{ asset("img/background/about-us.png") }}');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.about-content {
    max-width: 700px;
    margin-left: 15%;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}

.about-text-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.about-line {
    width: 3px;
    height: 100%;
    min-height: 200px;
    background-color: #F9AF40;
    flex-shrink: 0;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Feature Cards Container */
.feature-cards-container {
    max-width: 1170px;
    margin: -60px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

/* Feature Card */
.feature-card {
    background-color: #672E91;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.feature-card:hover .feature-title,
.feature-card:hover .feature-text {
    color: #000000;
}

.feature-card:hover .feature-divider {
    background-color: #672E91;
}

/* Feature Bar - Top Yellow Bar */
.feature-bar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background-color: #F9AF40;
    transition: width 0.4s ease;
}

.feature-card:hover .feature-bar {
    width: 100%;
}

/* Feature Title */
.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 10px;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

/* Feature Divider */
.feature-divider {
    width: 80%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 auto 20px;
    transition: background-color 0.4s ease;
}

/* Feature Text */
.feature-text {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
    flex: 1;
    transition: color 0.4s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-background {
        /* height: 500px; */
    }
    
    .about-content {
        margin-left: 10%;
    }
    
    .about-title {
        font-size: 30px;
    }
    
    .feature-cards-container {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -40px;
    }
}

@media (max-width: 768px) {
    .about-background {
        height: auto;
        /* min-height: 400px; */
    }
    
    .about-container {
        padding: 60px 20px;
    }
    
    .about-content {
        margin-left: 0;
        max-width: 100%;
    }
    
    .about-title {
        font-size: 26px;
    }
    
    .about-text-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-line {
        width: 100%;
        height: 3px;
        min-height: auto;
    }
    
    .feature-cards-container {
        grid-template-columns: 1fr;
        margin-top: -30px;
        gap: 20px;
    }
    
    .feature-card {
        min-height: auto;
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 22px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-text {
        font-size: 14px;
    }
}

/* ========================================= 3. SERVICES SECTION ========================================= */
/* services-section.css */

.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Service Card */
.service-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Service Image Wrapper */
.service-image-wrapper {
    position: relative;
    width: 100%;
       height: 100%;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
      height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.05);
}

/* Service Overlay */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.service-card:hover .service-overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-title {
    font-size: 24px;
    font-weight: 700;
    color: #F9AF40;
    text-align: center;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    text-transform: uppercase;
}

.service-card:hover .overlay-title {
    transform: translateY(0);
}

/* Toggle Button */
.srv-toggle-wrap {
    text-align: center;
    margin-top: 40px;
}

.srv-toggle-btn {
    background: #F9AF40;
    color: #000000;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.srv-toggle-btn:hover {
    background: transparent;
    transform: translateY(-3px);
   border: 2px solid #F9AF40;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.srv-toggle-btn[data-expanded="true"] .btn-arrow {
    transform: rotate(180deg);
}

/* Extra Services (Hidden by default) */
.srv-extra {
    display: none;
}

.srv-extra.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
   
    
    .section-title {
        font-size: 26px;
    }
    
    .overlay-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
  
    
    .overlay-title {
        font-size: 18px;
    }
}


 /* ========================================= 4. CTA ========================================= */

 .cta-free-estimate {
    background: #F9AF40;
    padding: 40px 0;
    margin: 40px 0;
}

.cta-free-estimate .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

.cta-clock-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* 24/7 Clock badge — ab ::before se (SVG nahi) */
.cta-clock-wrapper::before {
    content: "";
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    color: #000;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Ccircle cx='22' cy='18' r='14' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M22 18V10' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M22 18L28 13' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Ctext x='14' y='31' font-size='10' font-weight='700' font-family='Arial,sans-serif' fill='black'%3E24%3C/text%3E%3Cpath d='M25 36L31 28' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3Ctext x='28' y='40' font-size='10' font-weight='700' font-family='Arial,sans-serif' fill='black'%3E7%3C/text%3E%3C/svg%3E");
}
 .cta-clock-wrapper p {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Call Us button — parent se style */
.cta-free-estimate a {
    display: inline-block;
    background: #672E91;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 30px;
    border: 2px solid transparent;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cta-free-estimate a:hover {
    background: transparent;
    border: 2px solid #672E91;
    color: #161515;
}

@media (max-width: 992px) {
    .cta-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .cta-content > div:first-child {
        align-items: center;
    }

    .cta-clock-wrapper {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-free-estimate .container {
        padding: 0 15px;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .cta-free-estimate a {
        width: 100%;          /* pura container cover kare */
        text-align: center;
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* testimonials-section.css */
/* testimonials-section.css */

.testimonials-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

/* Testimonials Slider Wrapper */
.testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Arrow Buttons */
.testimonial-arrow {
    flex-shrink: 0;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #672E91;
    z-index: 10;
}

.testimonial-arrow:hover:not(:disabled) {
    background: #672E91;
    color: #ffffff;
    border-color: #672E91;
    transform: scale(1.1);
}

.testimonial-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonial-arrow:disabled:hover {
    background: #ffffff;
    color: #672E91;
    transform: none;
}

/* Track Container */
.testimonials-track-container {
    flex: 1;
    overflow: hidden;
    padding: 40px 0;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

/* Testimonial Card - FIXED WIDTH FOR 3 CARDS */
.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #ffffff;
    padding: 70px 30px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.testimonial-card.active {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 45, 158, 0.15);
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 10px;
    z-index: 5;
}

.quote-icon svg {
    width: 60px;
    height: 60px;
    display: block;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    margin: 10px 0 25px;
    flex: 1;
}

/* Testimonial Name */
.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: #000000;
    margin: 0 0 15px;
}

/* Testimonial Stars */
.testimonial-stars {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.testimonial-stars span {
    color: #672E91;
    font-size: 18px;
}



/* ===== TESTIMONIALS ARROWS - MOBILE FIX ===== */


@media (max-width: 991px) {
    .testimonials-slider-wrapper {
        position: relative;
        padding: 0 50px; 
    }
    
    .testimonial-arrow {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: #ffffff;
        border: 2px solid #f4b942;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #6b2d9e;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-arrow:hover {
        background: #f4b942;
        color: #ffffff;
    }
    
    .testimonial-arrow:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }
    
    .testimonial-prev {
        left: 0;
    }
    
    .testimonial-next {
        right: 0;
    }
    
    .testimonial-arrow svg {
        width: 24px;
        height: 24px;
    }
}

/* Small Mobile - Arrows chote karein */
@media (max-width: 576px) {
    .testimonials-slider-wrapper {
        padding: 0 35px;
    }
    
    .testimonial-arrow {
        width: 32px;
        height: 32px;
    }
    
    .testimonial-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .testimonial-prev {
        left: 5px;
    }
    
    .testimonial-next {
        right: 5px;
    }
}

/* Very Small Mobile - Arrows bottom mein */
@media (max-width: 400px) {
    .testimonials-slider-wrapper {
        padding: 0 30px;
    }
    
    .testimonial-arrow {
        width: 28px;
        height: 28px;
        top: auto;
        bottom: -50px;
        transform: none;
    }
    
    .testimonial-prev {
        left: calc(50% - 65px);
    }
    
    .testimonial-next {
        right: calc(50% - 65px);
    }
}




/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        min-height: auto;
    }
    
    .testimonial-arrow {
        width: 40px;
        height: 40px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .testimonials-track {
        gap: 20px;
    }
    
    .quote-icon svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .testimonial-arrow {
        display: none;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-name {
        font-size: 15px;
    }
    
    .quote-icon svg {
        width: 45px;
        height: 45px;
    }
}


/* ========================================= 6. OFFERS SECTION ========================================= */
/* offers-section.css */

.offers-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.offers-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: flex-end;
}

/* Offer Card */
.offer-card {
    width: 100%;
}

.offer-card.offer-lifted {
    transform: translateY(-30px);
}

/* Offer Image */
.offer-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.offer-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .offers-grid {
        gap: 25px;
    }
    
    .offer-card.offer-lifted {
        transform: translateY(-20px);
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .offers-section {
        padding: 60px 0;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-card.offer-lifted {
        transform: translateY(-15px);
    }
    
    .section-title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .offer-card.offer-lifted {
        transform: translateY(-10px);
    }
}


/* achievements-section.css */
/* achievements-section.css */

.achievements-section {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Section Header */
.achievements-header {
    text-align: center;
    padding: 20px 0 5px;
    margin: 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: 1px;
}

.section-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 8px 0 0;
}

/* Full Width Purple Strip */
.achievements-full-strip {
    width: 100%;
    background-color: #672E91;
    padding: 20px 0;
    margin: 0;
}

.achievements-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Achievement Card */
.achievement-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
}

/* Achievement Icon */
.achievement-icon {
    flex-shrink: 0;
}

.achievement-icon svg {
    width: 60px;
    height: 60px;
}

/* Achievement Content */
.achievement-content {
    flex: 1;
}

.achievement-number {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px 0;
    line-height: 1;
}

.achievement-label {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .achievement-number {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .achievements-header {
        padding: 15px 0 5px;
    }
    
    .achievements-full-strip {
        padding: 20px 0;
    }
    
    .achievement-card {
        padding: 15px;
        gap: 15px;
    }
    
    .achievement-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .achievement-number {
        font-size: 28px;
    }
    
    .achievement-label {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .achievement-card {
        padding: 15px;
    }
    
    .achievement-number {
        font-size: 26px;
    }
}
/* ========================================= 7. BLOGS SECTION ========================================= */
/* blogs-section.css */

.blogs-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.blogs-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

/* Blogs Grid */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Blog Card */
.blog-card {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}



/* Blog Image */
.blog-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.blog-image img {
    width: 100%;
    height: auto;
    display: block;
   
}



/* Responsive Design */
@media (max-width: 992px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .blogs-section {
        padding: 60px 0;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .blog-card:hover {
        transform: none;
    }
}