/* ===================================
   MID SOUTH DRY CLEANERS
   STYLE.CSS
=================================== */

:root{
    --primary:#0A2E6E;
    --secondary:#5EA9DD;
    --light:#F8FBFF;
    --dark:#222222;
    --white:#ffffff;
    --gray:#6c757d;
    --transition:all .3s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    overflow-x:hidden;
    color:var(--dark);
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

ul{
    list-style:none;
    padding:0;
    margin:0;
}

/* =============================
   TOP BAR
============================= */

.top-bar{
    background:var(--primary);
    color:#fff;
    font-size:14px;
    padding:10px 0;
}

.top-bar i{
    margin-right:5px;
}

/* =============================
   HEADER SOCIAL
============================= */

.social-top{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:10px;
}

.social-top a{
    width:35px;
    height:35px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

.social-top a:hover{
    background:var(--secondary);
    color:#fff;
    transform:translateY(-3px);
}

/* =============================
   NAVBAR
============================= */

.navbar{
    padding:15px 0;
    z-index:999;
}

/* .navbar-brand img{ */
    /* max-height:75px; */
/* } */
/* =============================
   NAVBAR
============================= */

.navbar{
    min-height:140px;
    padding:10px 0;
    background:#fff;
    z-index:999;
}

.navbar .container{
    display:flex;
    align-items:center;
}

.navbar-brand{
    margin:0;
    padding:0;
}

.header-logo{
    height:130px;
    width:auto;
    max-width:none;
    transition:all .3s ease;
}

.nav-link{
    font-weight:600;
    margin-left:15px;
    color:var(--dark)!important;
}

.nav-link:hover,
.nav-link.active{
    color:var(--primary)!important;
}

.navbar .btn-primary{
    border-radius:30px;
    padding:10px 25px;
}

.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

.navbar-toggler:focus{
    box-shadow:none;
}
.nav-link{
    font-weight:600;
    margin-left:15px;
    color:var(--dark)!important;
}

.nav-link:hover,
.nav-link.active{
    color:var(--primary)!important;
}

.navbar .btn-primary{
    border-radius:30px;
    padding:10px 25px;
}

/* =============================
   BUTTONS
============================= */

.btn-primary{
    background:var(--primary);
    border:none;
}

.btn-primary:hover{
    background:var(--secondary);
}

.btn-outline-primary{
    color:var(--primary);
    border-color:var(--primary);
}

.btn-outline-primary:hover{
    background:var(--primary);
    border-color:var(--primary);
}
/* =========================
HOME SLIDER
========================= */

.home-slider{
    position:relative;
}

.home-slider .carousel-item{
    height:650px;
    position:relative;
}

.home-slider .carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.home-slider .carousel-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

.home-slider .carousel-caption{
    z-index:2;
    bottom:18%;
    left:50%;
    transform:translateX(-50%);
    width:90%;
    max-width:900px;
    text-align:center;
}

.home-slider .carousel-caption h2{
    font-size:58px;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;
}

.home-slider .carousel-caption p{
    font-size:20px;
    color:#fff;
    margin-bottom:25px;
}

.home-slider .btn{
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

/* Tablet */

@media (max-width:991px){

    .home-slider .carousel-item{
        height:500px;
    }

    .home-slider .carousel-caption{
        bottom:15%;
    }

    .home-slider .carousel-caption h2{
        font-size:40px;
    }

    .home-slider .carousel-caption p{
        font-size:17px;
    }
}

/* Mobile */

@media (max-width:576px){

    .home-slider .carousel-item{
        height:350px;
    }

    .home-slider .carousel-caption{
        bottom:10%;
    }

    .home-slider .carousel-caption h2{
        font-size:26px;
        line-height:1.3;
        margin-bottom:10px;
    }

    .home-slider .carousel-caption p{
        font-size:14px;
        margin-bottom:15px;
    }

    .home-slider .btn{
        padding:10px 22px;
        font-size:14px;
    }

    .carousel-control-prev,
    .carousel-control-next{
        display:none;
    }
}
/* =============================
   HERO SECTION
============================= */

.hero{
    min-height:85vh;
    display:flex;
    align-items:center;
    padding:100px 0;
    background:#f8fbff;
}

.hero-tag{
    display:inline-block;
    background:#e5f1ff;
    color:var(--primary);
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    font-size:60px;
    font-weight:800;
    line-height:1.2;
    color:var(--primary);
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    color:var(--gray);
    margin-bottom:30px;
}

.hero img{
    border-radius:25px;
}

/* =============================
   SECTION TITLE
============================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    color:var(--primary);
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.section-title p{
    color:var(--gray);
    max-width:700px;
    margin:auto;
}

/* =============================
   FEATURE BOX
============================= */

.feature-box{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-10px);
}

.feature-box i{
    font-size:55px;
    color:var(--secondary);
    margin-bottom:20px;
}

.feature-box h5{
    font-weight:700;
}

/* =============================
   SERVICES
============================= */

.service-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:55px;
    color:var(--secondary);
    margin-bottom:20px;
}

.service-card h4{
    color:var(--primary);
    margin-bottom:15px;
    font-weight:700;
}

.service-card p{
    color:var(--gray);
}

/* =============================
   PROCESS
============================= */

.process-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.process-card span{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:20px;
    font-size:24px;
    font-weight:700;
}

.process-card h4{
    color:var(--primary);
    margin-bottom:10px;
}
/* =============================
   TESTIMONIAL QUOTE ICON + STARS
============================= */
.testimonial-section{
	margin-bottom: 50px;
	margin-top: 50px;
}
.testimonial-card{
    position:relative;
    background:#fff;
    border-radius:20px;
    padding:60px 30px 30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:100%;
    transition:transform 0.3s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card .quote-icon{
    font-size:40px;
    color:var(--primary);
    position:absolute;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    opacity:0.2;
}

/* Star ratings */
.testimonial-stars{
    margin-top:20px;
    margin-bottom:20px;
}

.testimonial-stars i{
    color:#FFD700; /* Gold color */
    font-size:18px;
    margin:0 2px;
}

.testimonial-card p{
    margin:15px 0 15px;
    color:var(--gray);
    font-style:italic;
}

.testimonial-card h6{
    color:var(--primary);
    font-weight:700;
}
/* =============================
   CTA SECTION WITH BACKGROUND
============================= */

.cta-section{
    position:relative;
    background: 
        linear-gradient(rgba(10,46,110,0.65), rgba(94,169,221,0.65)),
        url('../images/cta-bg.jpg') no-repeat center center;
    background-size:cover;
    color:#fff;
    padding:90px 0;
    overflow:hidden;
    text-align:center;
}

.cta-section h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-section p{
    font-size:18px;
    margin-bottom:30px;
}

/* Custom CTA Button */
.cta-btn{
    display:inline-block;
    font-weight:700;
    padding:16px 40px;
    border-radius:50px;
    background:linear-gradient(135deg, #FFD700, #FF8C00);
    color:#222;
    font-size:18px;
    text-transform:uppercase;
    transition:all 0.3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,0.2);
}

.cta-btn:hover{
    transform:translateY(-3px) scale(1.05);
    background:linear-gradient(135deg, #FF8C00, #FFD700);
    color:#fff;
    box-shadow:0 12px 30px rgba(0,0,0,0.3);
}

/* Responsive */
@media(max-width:991px){
    .cta-section h2{
        font-size:38px;
    }

    .cta-section p{
        font-size:16px;
    }

    .cta-btn{
        padding:14px 32px;
        font-size:16px;
    }
}

@media(max-width:576px){
    .cta-section h2{
        font-size:28px;
    }

    .cta-section p{
        font-size:14px;
    }

    .cta-btn{
        padding:12px 28px;
        font-size:14px;
    }
}


/* =============================
   FOOTER
============================= */

footer{
    background:#081f4a;
    color:#fff;
    padding:70px 0 20px;
}

footer h4{
    margin-bottom:20px;
    font-weight:700;
}

footer p{
    color:#d9d9d9;
}

footer ul li{
    margin-bottom:12px;
}

footer a{
    color:#d9d9d9;
}

footer a:hover{
    color:var(--secondary);
}

footer hr{
    border-color:rgba(255,255,255,.15);
    margin:40px 0 20px;
}

/* =============================
   FOOTER SOCIAL
============================= */

.footer-social{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
}

.footer-social a:hover{
    background:var(--secondary);
    color:#fff;
    transform:translateY(-5px);
}

/* =============================
   ABOUT PAGE
============================= */

.about-banner{
    background:var(--primary);
    color:#fff;
    padding:100px 0;
    text-align:center;
}

.about-banner h1{
    font-size:50px;
    font-weight:800;
}

.about-section{
    padding:90px 0;
}

/* =============================
   SERVICES PAGE
============================= */

.services-page{
    padding:90px 0;
}

/* =============================
   PRICING PAGE
============================= */

.pricing-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.price{
    font-size:50px;
    font-weight:800;
    color:var(--secondary);
}
.gallery-img {
    width: 100%;
    height: 280px; /* Same height for all images */
    object-fit: cover; /* Crop image neatly */
    border-radius: 12px;
    display: block;
    transition: all 0.4s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 991px) {
    .gallery-img {
        height: 240px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .gallery-img {
        height: 220px;
    }
}

/* =============================
   CONTACT
============================= */

.contact-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.form-control{
    border-radius:12px;
    padding:12px 15px;
}

.form-control:focus{
    box-shadow:none;
    border-color:var(--primary);
}

/* =============================
   RESPONSIVE
============================= */

@media(max-width:991px){

.hero{
    text-align:center;
}

.hero h1{
    font-size:42px;
}

.social-top{
    justify-content:center;
    margin-top:10px;
}

.footer-social{
    justify-content:center;
}

}

@media(max-width:768px){

.hero{
    padding:70px 0;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

.section-title h2{
    font-size:30px;
}

.cta-section h2{
    font-size:34px;
}

.top-bar{
    text-align:center;
}

.top-bar span{
    display:block;
    margin-bottom:5px;
}

.nav-link{
    margin-left:0;
    padding:10px 0;
}

}
/* =============================
   ABOUT BANNER
============================= */

.about-banner{
    position:relative;
    padding:140px 0;
    text-align:center;
    color:#fff;

    background:
    linear-gradient(
        rgba(10,46,110,0.75),
        rgba(10,46,110,0.75)
    ),
    url('../images/about-banner.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.about-banner h1{
    font-size:58px;
    font-weight:800;
    margin-bottom:15px;
    color:#fff;
}

.about-banner p{
    font-size:20px;
    color:#fff;
    margin-bottom:0;
}
@media(max-width:768px){

    .about-banner{
        padding:100px 0;
    }

    .about-banner h1{
        font-size:36px;
    }

    .about-banner p{
        font-size:16px;
    }

}
.about-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(
        circle at center,
        rgba(255,255,255,.08),
        transparent 60%
    );
}

.about-banner .container{
    position:relative;
    z-index:2;
}
.services-banner{
    position:relative;
    padding:140px 0;
    text-align:center;
    color:#fff;

    background:
    linear-gradient(
        rgba(10,46,110,0.75),
        rgba(10,46,110,0.75)
    ),
    url('../images/services.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.services-banner h1{
    font-size:58px;
    font-weight:800;
}

.services-banner p{
    font-size:20px;
}
/* Pricing Page */

.pricing-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.pricing-card:hover{
    transform:translateY(-10px);
}

.price{
    font-size:48px;
    font-weight:800;
    color:#0A2E6E;
    margin:15px 0;
}

.pricing-card ul{
    list-style:none;
    padding:0;
}

.pricing-card ul li{
    padding:8px 0;
    border-bottom:1px solid #eee;
}

.table-primary{
    background:#0A2E6E !important;
    color:#fff;
}
/* ==========================
   GALLERY PAGE
========================== */

.gallery-section{
    padding:90px 0;
}

.gallery-item{
    display:block;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.card-img-top{
    height:350px;
    object-fit:cover;
}
/* =========================
MOBILE HEADER FIX
========================= */

@media (max-width: 991.98px){

    .custom-navbar{
        padding:12px 0;
        position:relative;
    }

    .custom-navbar .container{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    /* Logo Center */
    .center-logo{
        order:1;
        margin:0 auto 10px;
    }

    .center-logo img{
        width:90px;
        height:90px;
        border-radius:50%;
        padding:5px;
    }

    /* Hamburger Right */
    .navbar-toggler{
        position:absolute;
        right:15px;
        top:25px;
        z-index:1000;
    }

    /* Full Width Menu */
    .navbar-collapse{
        width:100%;
        order:2;
        margin-top:10px;
    }

    .nav-left,
    .nav-right{
        width:100%;
        margin:0;
        padding:0;
        display:block;
        text-align:center;
    }

    .nav-left .nav-item,
    .nav-right .nav-item{
        width:100%;
    }

    .nav-link{
        padding:14px 0 !important;
        border-bottom:1px solid #eee;
        margin:0 !important;
    }

    .nav-right .btn{
        margin-top:15px;
        margin-bottom:15px;
        width:auto;
    }
}

@media (max-width:576px){

    .center-logo img{
        width:75px;
        height:75px;
    }

    .navbar-toggler{
        top:18px;
    }

    .top-bar{
        font-size:12px;
    }

    .hero h1{
        font-size:30px;
    }
}
@media (max-width: 576px){

    .center-logo img{
        width:85px;
        height:85px;
    }

    .custom-navbar{
        min-height:auto;
    }

    .navbar-toggler{
        margin-left:auto;
    }

    .nav-link{
        font-size:15px;
    }
}

.section-title-home h2 {
  color: var(--primary);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  float:left;
}
.section-title-home span {
  color: var(--primary);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  float:left;
}
.section-title-home p {
  color: #222222;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  float:left;
}
@media only screen and (min-width: 320px) {
  .phonecall {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
  }
}
@media only screen and (min-width: 320px) {
  .whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 4000;
  }
}