  :root {
        --bright-orange: #ff5e36; 
    
    }

    /*--- Main Slider Layout ---*/
    .custom-hero-slider {
        position: relative;
        width: 100%;
        height: 85vh;
        min-height: 700px;
        background-color: #0f1117;
        overflow: hidden;
    }

    /* Underlay Background with Premium Zoom Out effect */
    .slider-bg-underlay {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 1;
        opacity: 1;
        transform: scale(1);
        filter: blur(0px);
        transition: opacity 0.6s ease-in-out, transform 0.9s ease-out, filter 0.6s ease;
    }
    
    .custom-hero-slider.curtain-closing .slider-bg-underlay {
        transform: scale(1.04);
        filter: blur(4px);
    }
    
    .slider-bg-underlay::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle, rgba(15, 17, 23, 0.55) 0%, rgba(15, 17, 23, 0.9) 100%);
        z-index: 2;
    }

    /*--- Curtain Grid Layout ---*/
    .slice-grid {
        position: absolute;
        inset: 0;
        display: flex;
        width: 100%;
        height: 100%;
        z-index: 3;
        pointer-events: none;
    }

    /* Custom Bezier for Premium Wave Animation */
    .slice-column {
        flex: 1;
        height: 100%;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-101%);
        transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.85s ease;
    }
    
    .slice-column:nth-child(even) {
        transform: translateY(101%);
    }

    /* Smooth Wave Transitions (Staggered Left-to-Right Delay) */
    .slice-column:nth-child(1) { transition-delay: 0ms; }
    .slice-column:nth-child(2) { transition-delay: 50ms; }
    .slice-column:nth-child(3) { transition-delay: 100ms; }
    .slice-column:nth-child(4) { transition-delay: 150ms; }
    .slice-column:nth-child(5) { transition-delay: 200ms; }

    /*--- SEAMLESS INNER IMAGE POSITIONING ---*/
    .slice-inner {
        position: absolute;
        top: 0;
        left: calc(var(--i) * -100%);
        width: 500%; 
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .slice-inner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle, rgba(15, 17, 23, 0.55) 0%, rgba(15, 17, 23, 0.9) 100%);
        z-index: 4;
    }

    /*--- CURTAIN ACTIVE PHASE: CLOSING ---*/
    .custom-hero-slider.curtain-closing .slice-column {
        opacity: 1;
        transform: translateY(0) !important;
    }

    /*--- CURTAIN ACTIVE PHASE: OPENING ---*/
    .custom-hero-slider.curtain-opening .slice-column {
        opacity: 1;
        transform: translateY(101%) !important;
        transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.75s ease;
    }

    .custom-hero-slider.curtain-opening .slice-column:nth-child(even) {
        transform: translateY(-101%) !important;
    }

    /*--- Content Transition Styling ---*/
    .slider-content-item {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        z-index: 5;
        transition: opacity 0.5s ease;
    }

    .slider-content-item.active {
        opacity: 1;
        pointer-events: auto;
    }

    .slider-content-item .animate-item {
        opacity: 0;
        transform: translateY(30px);
        transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .slider-content-item.active .animate-item:nth-child(1) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
    .slider-content-item.active .animate-item:nth-child(2) { transition-delay: 0.75s; opacity: 1; transform: translateY(0); }
    .slider-content-item.active .animate-item:nth-child(3) { transition-delay: 0.9s; opacity: 1; transform: translateY(0); }
    .slider-content-item.active .animate-item:nth-child(4) { transition-delay: 1.05s; opacity: 1; transform: translateY(0); }

    /*--- Typography & Spacing ---*/
    .hero-badge-clean {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 8px 20px;
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.5px;
        margin-bottom: 25px;
        text-transform: uppercase;
        border-radius: 4px;
        border-left: 3px solid var(--bright-orange);
        border-right: 3px solid var(--bright-orange);
    }

    .badge-dot {
        width: 6px;
        height: 6px;
        background-color: var(--bright-orange);
        border-radius: 50%;
        display: inline-block;
    }

    .hero-title {
        font-size: 74px;
        font-weight: 800;
        line-height: 1.15;
        color: #ffffff;
        margin-bottom: 25px;
        letter-spacing: -1px;
        text-align: center;
    }

    .highlight-text {
        color: var(--bright-orange);
    }

    .hero-desc {
        font-size: 18px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.85);
        max-width: 680px; 
        margin: 0 auto 45px auto; 
        font-weight: 400;
        text-align: center;
    }

    .btn-hero-flat {
        position: relative;
        background-color: var(--bright-orange);
        color: #ffffff !important;
        font-weight: 700;
        font-size: 0.95rem;
        padding: 18px 45px; 
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 0px; 
        overflow: hidden;
        z-index: 1;
    }

    .btn-hero-flat::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        transform: scaleX(0);
        transform-origin: center; 
        z-index: -1;
    }

    .btn-hero-flat:hover {
        color: var(--bright-orange) !important;
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(255, 94, 54, 0.3);
    }

    .btn-hero-flat:hover::before {
        transform: scaleX(1);
    }

    /*--- BUTTONS STYLING ---*/
    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 60px; 
        height: 60px; 
        border-radius: 50%; 
        background: rgba(15, 17, 23, 0.65) !important;
        border: 2px solid rgba(255, 255, 255, 0.2);
        color: white;
        z-index: 15;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        cursor: pointer;
        transition: border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                    box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                    background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .prev-btn { left: 40px; }
    .next-btn { right: 40px; }

    .btn-hover-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0; 
        transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        transform: scale(1.2); 
        z-index: 1;
    }

    .btn-hover-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 94, 54, 0.45); 
    }

    .btn-ripple-effect {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
        z-index: 2;
        pointer-events: none;
    }

    .icon-wrapper {
        position: relative;
        width: 20px;
        height: 20px;
        z-index: 3;
        overflow: hidden;
    }

    .icon-wrapper i {
        position: absolute;
        font-size: 1.3rem;
        transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
        display: block;
        width: 100%;
        height: 100%;
        text-align: center;
        line-height: 20px;
    }

    .icon-wrapper .main-icon {
        top: 0;
        left: 0;
    }

    .prev-btn .clone-icon { transform: translateX(120%); }
    .next-btn .clone-icon { transform: translateX(-120%); }

    .slider-btn:hover { 
        border-color: var(--bright-orange);
        box-shadow: 0 0 25px rgba(255, 94, 54, 0.6);
        background: rgba(15, 17, 23, 0.95) !important;
    }

    .slider-btn:hover .btn-hover-bg {
        opacity: 1; 
        transform: scale(1); 
    }

    .prev-btn:hover .main-icon { transform: translateX(-120%); }
    .prev-btn:hover .clone-icon { transform: translateX(0); }

    .next-btn:hover .main-icon { transform: translateX(120%); }
    .next-btn:hover .clone-icon { transform: translateX(0); }

    .slider-btn:active {
        transform: translateY(-50%) scale(0.92);
    }

    .slider-btn.clicked .btn-ripple-effect {
        animation: rippleEffect 0.5s ease-out;
    }

    @keyframes rippleEffect {
        0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
        100% { transform: translate(-50%, -50%) scale(8); opacity: 0; }
    }

    /*--- CENTERED INDICATORS ---*/
    .premium-indicators {
        position: absolute;
        left: 50%;
        transform: translateX(-50%); 
        bottom: 45px;
        display: flex;
        gap: 12px;
        z-index: 15;
    }
    
    .indicator-bar {
        position: relative;
        width: 45px;
        height: 4px;
        background-color: rgba(255, 255, 255, 0.25);
        cursor: pointer;
        transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        overflow: hidden;
        border-radius: 2px;
    }
    
    .indicator-bar .progress-line {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        background-color: var(--bright-orange);
        transition: width 0.3s linear;
    }

    .indicator-bar.active { 
        width: 65px; 
    }

    .indicator-bar.active .progress-line {
        width: 100%;
        transition: width 7s linear; 
    }

    /* Mobile Responsive */
    @media(max-width: 991px) {
        .custom-hero-slider { height: auto;  padding: 140px 0 80px; }
        .hero-title { font-size: 42px; }
        .hero-desc { font-size: 15px; }
        .slider-btn, .premium-indicators { display: none !important; }
    }


    /* about us */

    .abouts { padding: 80px 0; background: #ffffff; position: relative; overflow: hidden; }

/* Watermark Text */
.abouts-content { position: relative; z-index: 1; }
.watermark-text {
    position: absolute; top: -50px; left: -20px; font-size: 150px; 
    font-weight: 900; color: #f8f9fa; z-index: -1; line-height: 1;
    
}
.abouts-desc{
    font-family: "Poppins", sans-serif !important;
}

.abouts-sub-title {
color: #807e7e;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;

 }
.abouts-title { font-size: 48px; font-weight: 800; color: #323e37;  margin: 15px 0; line-height: 1.2; }
.abouts-highlight { font-weight: 600; color: #868383; margin-bottom: 30px; border-left: 4px solid #ff5e36; padding-left: 15px; }

/* Features Styling */
.abouts-features { display: flex; gap: 30px; margin-bottom: 30px; }
.abouts-item i { font-size: 40px; color: #ff5e36; margin-bottom: 10px; display: block; transition: 0.3s; }
.abouts-item:hover i { transform: translateY(-10px); }
.abouts-item h5 { font-weight: 800; margin-bottom: 5px; }
.abouts-item p{
font-family: "Poppins", sans-serif !important;
}
/* Image and Counter */
.about-main-img { width: 100%; height: 500px; object-fit: cover; border-radius: 8px; box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
.abouts-counter { display: flex; margin-top: -30px; position: relative; z-index: 2; margin-right: 20px; }
.count-box { flex: 1; padding: 30px; text-align: center; color: #fff; transition: 0.4s; }
.count-box:hover { transform: translateY(-10px); }
.orange-bg { background: #ff5e36; }
.blue-bg { background: #003366; }

.count-box h3 { font-size: 40px; margin: 0; font-weight: 800; }
.count-box span { font-size: 13px; text-transform: uppercase; font-weight: 700; opacity: 0.9; }

/* Button */
.abouts-btn {
     background: #ff5e36; 
     color: #fff; padding: 18px 45px; 
     text-decoration: none;
      display: inline-block;
       font-weight: 700; border-radius: 0px;
        transition: 0.3s;
         box-shadow: 0 5px 15px rgba(255, 94, 54, 0.3);
         }
.abouts-btn:hover { background: #e64e28; color: #fff; transform: scale(1.05); }

/* our service */


    
.our_services { 
    padding: 80px 0; 
    position: relative;
    /* Yahan sirf image ka path rakha hai */
    background-image: url('images/service_bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: transparent; /* Color hata diya */
}
/* Section Title Styling */
.our_services  .section-title { margin-bottom: 50px; }
.our_services  .subtitle { 
    color: #ff5e36; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    font-size: 14px;
}
.our_services  .subtitle span { 
    display: inline-block; 
    width: 30px; 
    height: 2px; 
    background: #ff5e36; 
    margin-right: 10px; 
    vertical-align: middle; 
}
.our_services  .section-title h2 { 
       font-size: 48px;
    font-weight: 800;
    margin-top: 15px;
    color: #323e37;
}


.our_services   .service-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.our_services  .service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4f7fc;
    margin-bottom: 25px;
    border-radius: 4px;
    overflow: hidden;
}

.our_services  .icon-box {
    background: #000;
    color: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.our_services  .details-btn {
    text-decoration: none;
    color: #003366;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 15px;
    transition: 0.3s;
}

.our_services  .arrow-icon {
    background: #ff5e36;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

/* Card Lift effect */
.our_services .service-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    transition: all 0.5s ease; /* Smooth motion */
    position: relative;
    margin-bottom: 20px;
    text-align: left !important;
    border-radius: 10px;
    overflow: hidden; /* Swing animation ke liye zaroori */
}

.our_services .service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff5e36; /* Hover par border change */
}

/* Icon Swing Animation */
.our_services .service-card:hover .icon-box i {
    animation: swing 0.8s ease-in-out;
}

@keyframes swing {
    15% { transform: rotate(15deg); }
    30% { transform: rotate(-10deg); }
    45% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    75% { transform: rotate(2deg); }
    100% { transform: rotate(0deg); }
}

/* Icon Box aur Button ka color change */
.our_services .service-card:hover .icon-box {
    background: #ff5e36;
    color: #fff;
    transition: 0.4s;
}

.our_services .service-header:hover .arrow-icon { 
    background: #000;
    color: #fff; 
    transform: translateX(10px); 
}

/* Hover Effects */
.our_services  .service-card:hover .arrow-icon { 
    background: #ff5e36; 
    transform: translateX(5px);
}
.our_services  .service-card:hover .details-btn { color: #ff5e36; }

 .our_services .service-title { font-size: 22px; font-weight: 800; margin-bottom: 15px; }
.our_services  .service-desc { font-size: 14px; color: #666; line-height: 1.7; }

.our_services  .service-card {
    background: #fff;
    padding: 30px;
    
    border: 1px solid #eee;
    transition: 0.4s;
    position: relative;
    margin-bottom: 20px;
        text-align: left !important;
}

.our_services  .service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4f7fc;
    margin-bottom: 25px;
    border-radius: 4px;
    overflow: hidden;
}

.our_services  .icon-box {
    background: #000;
    color: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.our_services  .details-btn {
    text-decoration: none;
    color: #003366;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
    transition: 0.3s;
}

.our_services  .arrow-icon {
    background: #ff5e36;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: 0.3s;
}
 
 .our_services  .service-header:hover .arrow-icon { 
    background: #ff5e36; 
    color: #fff; 
    transform: translateX(5px); 
}
.our_services  .service-header:hover .details-btn { 
    color: #ff5e36; 
}

.our_services  .service-title { font-size: 20px; font-weight: 800; margin-bottom: 15px; }
.our_services  .service-desc { font-size: 14px; color: #666; line-height: 1.6;
font-family: "Poppins", sans-serif !important; }


/* why cohose us */



   
   .why-choose-us {
    background-color: #ffffff;
    overflow: hidden;
    padding:0px;
    padding-bottom:0px !important;
}

.why-choose-us .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
    .why-choose-us .img-wrapper img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

    .why-choose-us .content-padding { padding: 80px 100px; }

    .why-choose-us .subtitle {
      color: #ff5e36;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

    .why-choose-us .title {
        font-size: 48px;
    font-weight: 800;
    margin-top: 15px;
    color: #323e37;
}

    .why-choose-us .description { color: #666; font-size: 16px; margin-bottom: 30px;
font-family: "Poppins", sans-serif !important;
 }

    .why-choose-us .feature-box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    transition: 0.3s;
}

    .why-choose-us .icon-box {
    background: #ff5e36;
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 4px;
    flex-shrink: 0;
    transition: 0.4s;
}

    .why-choose-us .feature-box h4 { font-weight: 700; font-size: 18px; margin-bottom: 5px; } 
    .why-choose-us .feature-box p {     font-size: 13px;
    color: #777;
    font-family: "Poppins", sans-serif !important; }

/* Hover Effect: Swing & Lift */
    .why-choose-us .feature-box:hover .icon-box {
    transform: rotate(10deg) translateY(-5px);
    background: #000;
}


/* cou7nter */


.counter-section {
    position: relative;
    padding: 50px 0;
    /* High-quality background image with a deep blue gradient overlay */
    background: linear-gradient(135deg, rgba(13, 70, 129, 0.95), rgba(13, 70, 129, 0.95)), 
                url('images/map-dark.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect ke liye - jab scroll karoge toh image move hogi */
    color: #fff;
    overflow: hidden;
}

.counter-section .counter-icon-box {
    font-size: 45px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-section .counter-number {
    font-size: 48px;
    font-weight: 700;
}

.counter-section .counter-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
}
/* Flex item adjustments to keep side-by-side alignment */
.counter-section .counter-item {
    padding: 10px;
}

/* Premium White Circle Border around Icons */
.counter-section .counter-icon-box {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 32px;
    transition: transform 0.4s ease;
}

.counter-section .counter-item:hover .counter-icon-box {
    transform: rotate(15deg) scale(1.05);
    border-color: #ffffff;
}

/* Numbers & Details Typography */
.counter-section .counter-number {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.counter-section .counter-title {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}



.breadcrumb_section {
  
    padding: 100px 0;
    background: rgb(21, 32, 66);

    color: #ffffff;
}

/* Blue Overlay */


.breadcrumb_title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Breadcrumb Pill Design */
.breadcrumb_nav {
 
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--bright-orange);
    padding: 12px 30px;
    border-radius: 0px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(255, 94, 54, 0.3);
    position: relative;
    top: 100px;
    z-index: 1;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;

}

.breadcrumb_nav a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb_nav a:hover {
    text-decoration: underline;
}

.breadcrumb_nav .active {
    opacity: 0.9;
}

.breadcrumb_nav i {
    font-size: 0.9rem;
}



    
/* CTA Banner Container */
.cta_banner {
  padding: 120px 0;
  color: #fff;
  position: relative;
  background: linear-gradient(rgba(26, 37, 51, 0.8), rgba(26, 37, 51, 0.8)), 
              url('images/hero-img-4.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  text-align: center;
}

.cta-title {
  font-size:48px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
  text-transform: capitalize;
}

.cta-title .highlight-orange {
  color: #ff5e14;
}

/* Fully Rounded Contact Button */
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 45px !important;
  background-color: #ff5e14;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0px; /* Fully rounded/pill shape */
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  font-size: 16px;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(255, 94, 20, 0.2);
}

.theme-btn:hover {
  background-color: #fff;
  color: #ff5e14;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Icon hover effect */
.theme-btn i {
  transition: transform 0.3s ease;
}
.theme-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
  .cta-title { font-size: 2.5rem; }
}

@media (max-width: 576px) {
  .cta_banner { padding: 70px 0; }
  .cta-title { font-size: 1.8rem; }
  .theme-btn { padding: 14px 30px; font-size: 14px; }
}


   
  :root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --dark: #1a1f2e;
    --dark-light: #252b3d;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px -10px rgba(0,0,0,0.15);
  }

  .ac-service-section { padding: 60px 0; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); }
  .ac-service-section .sticky-sidebar { position: sticky; top: 25px; z-index: 10; }

  /* Sidebar Cards */
  .ac-service-section .sidebar-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .ac-service-section .sidebar-card:hover { box-shadow: var(--shadow-xl); }

  .ac-service-section .sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
  }
  .ac-service-section .sidebar-header i { font-size: 1.5rem; color: var(--primary); }
  .ac-service-section .sidebar-header h4 { font-size: 1.15rem; font-weight: 700; margin: 0; }

  /* Main Service List (Our Services) */
  .ac-service-section .service-list { list-style: none; padding: 8px; }
  .ac-service-section .service-list li { margin-bottom: 4px; }
  .ac-service-section .service-list li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--dark);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
  }
  .ac-service-section .service-list li a:hover {
    background: var(--gray-light);
    color: var(--primary);
    transform: translateX(4px);
  }
  .ac-service-section .service-list li.active a {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
  }
  .ac-service-section .service-list li.active a:hover { transform: translateX(0); }

  .ac-service-section .service-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,107,53,0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  .ac-service-section .service-list li.active .service-icon { background: rgba(255,255,255,0.2); }
  .ac-service-section .service-icon i { font-size: 1.1rem; color: var(--primary); }
  .ac-service-section .service-list li.active .service-icon i { color: var(--white); }
  .ac-service-section .service-list li a span { flex: 1; }
  .ac-service-section .arrow { font-size: 12px;  transition: all 0.3s ease; }
  .ac-service-section .service-list li a:hover .arrow, 
  .ac-service-section .service-list li.active .arrow { opacity: 1; transform: translateX(4px); }

  /* Sub Services (AC Services) */
  .ac-service-section .sub-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 18px 28px;
  }
  .ac-service-section .sub-header i { color: var(--white); }
  .ac-service-section .sub-service-list { list-style: none; padding: 8px; }
  .ac-service-section .sub-service-list li { margin-bottom: 3px; }
  .ac-service-section .sub-service-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--dark);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
  }
  .ac-service-section .sub-service-list li a:hover {
    background: var(--gray-light);
    color: var(--primary);
    padding-left: 24px;
  }
  .ac-service-section .sub-service-list li.active-sub a {
    background: rgba(255,107,53,0.08);
    color: var(--primary);
    border-left: 3px solid var(--primary);
    padding-left: 17px;
  }
  .ac-service-section .sub-service-list li a i { font-size: 1rem; }

  /* Contact Card */
  .ac-service-section .contact-card .sidebar-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
  .ac-service-section .contact-card .sidebar-header i { color: var(--white); }
  .ac-service-section .contact-body { padding: 24px; }
  .ac-service-section .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: var(--gray-light);
    transition: all 0.3s ease;
  }
  .ac-service-section .contact-item:hover { background: #e5e7eb; transform: translateX(4px); }
  .ac-service-section .contact-item:last-child { margin-bottom: 0; }

  .ac-service-section .icon-ring {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
  }
  .ac-service-section .icon-ring i { color: var(--primary); font-size: 1.2rem; }
  .ac-service-section .contact-info { display: flex; flex-direction: column; }
  .ac-service-section .contact-info .label { font-size: 0.75rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
  .ac-service-section .contact-info strong { font-size: 0.9rem; color: var(--dark); font-weight: 600; }

  /* Main Content Card */
  .ac-service-section .main-content-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
  }

  .ac-service-section .content-header { padding: 40px 40px 0; }
  .ac-service-section .content-header h2 { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.3; }
  .ac-service-section .content-header p { color: var(--gray); font-size: 1rem; line-height: 1.7; font-weight: 400; }
  .ac-service-section .content-header p strong { color: var(--dark); font-weight: 600; }

  /* Hero Image */
  .ac-service-section .hero-image {
    position: relative;
    margin: 30px 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .ac-service-section .hero-image img { width: 100%; height: 300px; object-fit: cover; display: block; }
  .ac-service-section .image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
  }
  .ac-service-section .stat-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--dark);
    box-shadow: var(--shadow);
  }
  .ac-service-section .stat-box i { color: var(--primary); font-size: 1.2rem; }

  /* Dual Images */
  .ac-service-section .dual-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 40px;
    margin-bottom: 30px;
  }
  .ac-service-section .img-box {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
  }
  .ac-service-section .img-box:hover { transform: translateY(-5px); }
  .ac-service-section .img-box img { width: 100%; height: 200px; object-fit: cover; display: block; }
  .ac-service-section .img-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(26,31,46,0.9);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  .ac-service-section .img-tag i { color: var(--primary); }

  /* Why Section */
  .ac-service-section .why-section { padding: 0 40px 30px; }
  .ac-service-section .why-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
  }
  .ac-service-section .why-section h3 i { color: var(--primary); font-size: 1.5rem; }
  .ac-service-section .why-section > p { color: var(--gray); margin-bottom: 24px; font-size: 0.95rem; }

  /* Feature Grid */
  .ac-service-section .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .ac-service-section .feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: var(--gray-light);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
  }
  .ac-service-section .feature-item:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
  }
  .ac-service-section .feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
  }
  .ac-service-section .feature-text { display: flex; flex-direction: column; }
  .ac-service-section .feature-text strong { font-size: 0.9rem; color: var(--dark); font-weight: 700; }
  .ac-service-section .feature-text span { font-size: 0.8rem; color: var(--gray); font-weight: 500; }

  /* Contact Form */
  .ac-service-section .contact-form-wrapper {
    margin: 0 40px 40px;
    padding: 35px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 20px;
    border: 1px solid var(--border);
  }
  .ac-service-section .form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
  }
  .ac-service-section .form-header > i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 14px;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
  }
  .ac-service-section .form-header h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin: 0; }
  .ac-service-section .form-header span { font-size: 0.85rem; color: var(--gray); font-weight: 500; }

  .ac-service-section .input-group {
    position: relative;
    display: flex;
    align-items: center;
  }
  .ac-service-section .input-group > i {
    position: absolute;
    left: 18px;
    color: var(--gray);
    font-size: 1.1rem;
    z-index: 2;
    transition: color 0.3s ease;
  }
  .ac-service-section .input-group input,
  .ac-service-section .input-group textarea {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid var(--border);
    border-radius: 14px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    transition: all 0.3s ease;
    outline: none;
  }
  .ac-service-section .input-group input:focus,
  .ac-service-section .input-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
  }
  .ac-service-section .input-group input:focus + i,
  .ac-service-section .input-group textarea:focus + i,
  .ac-service-section .input-group:focus-within > i { color: var(--primary); }
  .ac-service-section .input-group textarea { resize: vertical; min-height: 120px; padding-top: 16px; }
  .ac-service-section .textarea-group > i { top: 18px; }

  .ac-service-section .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto !important;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    /* font-family: 'Poppins', sans-serif; */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255,107,53,0.35);
  }
  .ac-service-section .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255,107,53,0.45);
  }
  .ac-service-section .submit-btn:active { transform: translateY(0); }


/* contact */

.contact-info-section {
    padding: 50px 0;
    background-color: #ffffff;
  
}

.contact-header {
    margin-bottom: 20px;
}

 .contact-info-section .sub-badge {

    color: #ff5e36;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

 .contact-info-section .main-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-top: 15px;
    letter-spacing: -1px;
}

.contact-info-section .desc-text {
    color: #666;
    max-width: 600px;
    margin: 15px auto 0;
    font-size: 16px;
}

/* Card Improvements */
.contact-link-wrapper {
    text-decoration: none; /* Link underline hatane ke liye */
    display: block;
    height: 100%;
}

.contact-info-section .contact-card {
    display: flex;
    align-items: center;
    padding: 35px 30px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #f1f1f1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.contact-card:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #ff5e36;
}

.contact-info-section .contact-icon {
    width: 65px;
    height: 65px;
    background: #f8f9fa;
    color: #ff5e36;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: 0.4s;
}

.contact-card:hover .contact-icon {
    background: #ff5e36;
    color: #fff;
    /* transform: scale(1.1); */
}

.contact-info-section .contact-details span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #ff5e36;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.contact-info-section .contact-details h5 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    word-break: break-all; /* Mobile pe email wrap karne ke liye */
}



:root {
    --primary-text: #2d3436;
    --accent-color: #ff5e36 !important;; /* From Singh Travel Theme */
    --accent-soft: #fff0f0;
    --border-color: #f1f2f6;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.contact-location-section {
    padding: 50px 0;
    background-color: #f8f9fa; /* Very Light Gray Background */
   
}


.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-text);
    line-height: 1.2;
    letter-spacing: -1px;
}

.text-accent {
    color: var(--accent-color);
}

.fw-600 { font-weight: 600; }

.badge-accent {
    background: var(--accent-soft);
    color: var(--accent-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(230,46,46, 0.1);
}

/* Contact Form Card styling */
.contact-form-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}
.location-map-card{
    background: #ffffff;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

/* Advanced Floating Labels Styling */
.floating-group {
    position: relative;
    margin-bottom: 5px;
}

.floating-input {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    outline: none;
    transition: 0.3s ease all;
    color: var(--primary-text);
}

.floating-input:focus {
    /* border-bottom: 2px solid var(--accent-color); */
}

/* Animated bottom line highlight */
.input-highlight {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: 0.4s ease all;
}

.floating-input:focus ~ .input-highlight {
    width: 100%;
    left: 0;
}

.floating-group label {
    position: absolute;
    top: 12px;
    left: 0;
    color: #999;
    pointer-events: none;
    transition: 0.3s ease all;
    font-size: 15px;
}

/* Floating logic on focus/not empty */
.floating-input:focus ~ label,
.floating-input:not(:placeholder-shown) ~ label {
    top: -15px;
    font-size: 12px;
    color: var(--accent-color);
    font-weight: 700;
}

/* Modern Checkbox */
.custom-check .form-check-input {
    border-color: #ddd;
    border-radius: 4px;
}

.custom-check .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Modern Submit Button */
.btn-modern-submit {
    height: 55px;
    background: var(--primary-text);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
    overflow: hidden;
    position: relative;
}

.btn-modern-submit i {
    transition: 0.4s;
}

.btn-modern-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 46, 46, 0.2);
}

.btn-modern-submit:hover i {
    transform: translateX(5px);
}

/* Location and Map Styling */
.location-map-card {
    display: flex;
    flex-direction: column;
}

.map-iframe-container {
    position: relative;
    flex-grow: 1;
    width: 100%;
    min-height: 350px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffffff;
    color: var(--primary-text);
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.map-overlay-btn:hover {
    background: var(--accent-soft);
    color: var(--accent-color);
    border-color: rgba(230,46,46, 0.2);

}
p{
    font-family: "Poppins",sans-serif !important;
}

/* Responsive adjustment */
@media (max-width: 768px) {
   .contact-info-section  .main-title { font-size: 32px; }
   .contact-info-section .contact-card { padding: 25px; }
}


  /* Responsive */
  @media (max-width: 767px) {
    .ac-service-section { padding: 30px 0; }
    .ac-service-section .content-header, 
    .ac-service-section .why-section, 
    .ac-service-section .contact-form-wrapper { padding-left: 20px; padding-right: 20px; }
    .ac-service-section .hero-image { margin: 20px; }
    .ac-service-section .dual-images { padding: 0 20px; grid-template-columns: 1fr; }
    .ac-service-section .feature-grid { grid-template-columns: 1fr; }
    .ac-service-section .contact-form-wrapper { margin: 0 20px 20px; padding: 25px; }
    .ac-service-section .content-header h2 { font-size: 1.5rem; }
    .ac-service-section .form-header { flex-direction: column; text-align: center; }
  }


/* Responsive adjustments */
@media (max-width: 1199px) {
    .counter-section .counter-number { font-size: 32px; }
    .counter-section .counter-icon-box { width: 60px; height: 60px; min-width: 60px; font-size: 26px; }
}

@media (max-width: 767px) {

    .counter-section .counter-item { justify-content: start; }
}

@media screen  and (min-width:300px) and (max-width:768px){
    
    .custom-hero-slider { 
        height: auto; 
        min-height: 500px; /* Mobile ke liye kam height */
        padding: 80px 20px; /* Side padding zaroori hai taaki text chipke nahi */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-title { 
        font-size: 22px !important; /* Text bada dikhega */
        line-height: 1.2;
        margin-bottom: 20px;
    }
.hero-badge-clean{
    font-size: 10px;
}
    .hero-desc { 
        font-size: 14px !important; 
        line-height: 1.6;
        margin: 0 auto 30px auto;
        padding: 0 10px; /* Text wrap hone par side se space milega */
    }

    .btn-hero-flat {
        padding: 14px 30px;
        font-size: 0.85rem;
    }

    /* Hide complex elements on small screens */
    .slider-btn, .premium-indicators, .slice-grid { 
        display: none !important; 
    }
    section{
        padding: 20px !important;
    }
    .abouts-title {
    font-size: 22px;
    }
    .watermark-text {
    position: absolute;
    top: -12px;
    left: 0px;
    font-size: 106px;
    font-weight: 900;
    color: #f8f9fa;
    z-index: -1;
    line-height: 1;
}

.abouts-desc{
    font-size: 14px;
}
.abouts-highlight {
padding-left: 10px;
}
.abouts-item h5{
    font-size: 16px;
}

.abouts-item p{
    font-size: 13px;
}
.abouts-features{
margin-bottom: 5px;
}
.about-main-img{
    margin-top: 20px;
}
.our_services {
    padding-right: 0px !important;
}
.our_services .section-title h2{
    font-size: 22px;
}
.our_services .section-title{
    margin-bottom: 20px;
}
.abouts-highlight{
    font-size: 17px;
}
.our_services .section-title h2{
    font-size: 20px;
}
.our_services .service-title{
    font-size: 18px;
}
.why-choose-us .content-padding{
    padding: 20px !important;
}
.why-choose-us .title{
    font-size: 22px;
}
.why-choose-us .description{
    font-size: 14px;
}

    .cta-title {
        font-size: 22px;
    }
    .testimonial-section-new .title{
        font-size: 22px !important;
    }
    .breadcrumb_title{
        font-size: 25px;
        margin-bottom: 0px;
    }
    .breadcrumb_nav{
            top: 20px !important;
    }
    .breadcrumb_nav span, .breadcrumb_nav a{
        font-size: 14px;
    }
    .sidebar-card{
        display: none;
    }
    .contact-card{
        display: block  !important;
        margin-top: 20px;
    }
    .footer-matrix-core{
        padding: 20px 0px !important;
    }
    .footer-logo img {
        height: 87px !important;
    width: 88px !important;
    }
    .counter-section .counter-title {
    font-size: 13px !important;
    }
    .why-choose-us{
        padding-top: 0px !important;
    }
    .why-choose-us .img-wrapper img{
        height: 500px;
        display: none;
    }
    .why-choose-us .feature-box{
        margin-bottom: 10px;
    }
    .abouts-title{
        margin: 5px 0;
    }
    .count-box h3 {
    font-size: 25px;
    }
    .counter-section .counter-number {
        font-size: 22px !important;
    }
    .count-box

 {
        padding: 20px;
 }
 .section-title {
font-size: 22px; 
}
.contact-form-card{
    padding: 20px;
}
.contact-location-section{
    padding: 20px 0px !important;
}
.contact-info-section{
    padding: 20px 0px !important;
}

.ac-service-section{
    padding: 20px 0px !important;
}

.ac-service-section .contact-form-wrapper {
        margin: 0 20px 9px !important;
        padding: 10px !important;
    }
}


