/********** Template CSS **********/
.img{
margin-right: 130px !important;
margin-bottom: 20px !important;
background-color: red;
}
.product-img{
    width: 10px;
    height: 350px;
    object-fit: cover;
}
.beanut-flower{
object-fit: cover;
}
:root {
    --primary: #88B44E;
    --secondary: #FB9F38;
    --light: #F5F8F2;
    --dark: #252C30;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

/* .navbar .navbar-brand {
    position: absolute;
    padding: 0;
    width: 170px;
    height: 135px;
    top: 0;
    left: 0;
} */

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #F4C944;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: 126px;
        height: 100px;
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 75px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
/* ================= HERO IMAGE ================= */
.hero-img {
  height: 600px;
  object-fit: cover;
}

/* ================= DARK OVERLAY ================= */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}

/* Keep content above overlay */
.carousel-caption {
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* ================= TAGLINE ================= */
h5 {
    
  font-weight: 400;
  font-size: 1rem;
  background: rgba(155, 155, 155, 0.39);
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 1rem;
}

/* ================= SERVICES BOX ================= */
.hero-services {
  font-size: 1rem;
  line-height: 1.8;
  background: rgba(0, 0, 0, 0.55);
  padding: 15px 20px;
  border-radius: 15px;
  max-width: 420px;
  margin: 0 auto;
}

.hero-services span {
  display: block;
  margin: 6px 0;
}

/* ================= CONTACT BOX ================= */
.contact-box {
  font-size: 0.95rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 18px;
  border-radius: 30px;
  display: inline-block;
}

/* ================= BUTTONS ================= */
.hero-btn {
  padding: 10px 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {

  .hero-img {
    height: 100vh;
  }

  .display-4 {
    font-size: 2rem;
  }

  h5 {
    font-size: 0.9rem;
    padding: 6px 15px;
  }

  .hero-services {
    font-size: 0.9rem;
    padding: 12px 15px;
    max-width: 320px;
  }

  .contact-box {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .hero-btn {
    font-size: 0.85rem;
    padding: 8px 16px;
    margin: 5px;
  }

}

.page-header {
    background: linear-gradient(rgba(190, 197, 181, 0.393), rgba(215, 223, 206, 0.53)), url(../img/com-banner-security.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

/* .section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #F4C944;
} */

/* .section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: var(--dark);
    border: 10px solid #FFFFFF;
    border-radius: 28px;
} */

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}


/*** Products ***/
.product {
    background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../) left bottom no-repeat;
    background-size: auto;
}

.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: #F4C944;
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #FFFFFF;
    color: #F4C944;
}


/*** About ***/
.video {
    background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../img/video-bg.jpg) center center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid #F4C944;
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Store ***/
.store-item .store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(23 24 20 / 30%);
    opacity: 0;
    transition: .5s;
}

.store-item:hover .store-overlay {
    opacity: 1;
}


/*** Contact ***/
.contact .btn-square {
    width: 100px;
    height: 100px;
    border: 20px solid var(--light);
    background: #F4C944;
    border-radius: 50px;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../img/testimonial-bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-item {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background: #FFFFFF;
    border: 30px solid #F4C944;
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #F4C944;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--dark);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #F4C944;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #252525;
}

.copyright a:hover {
    color: #FFFFFF !important;
}
/*  */
.table-section {
      background-color: #e9ecef;
      padding: 25px;
      margin: 30px auto;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      max-width: 800px;
      text-align: center;
    }

    h2 {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 5px;
    }

    h4 {
      font-size: 18px;
      margin-bottom: 15px;
      color: #333;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      background-color: #fff;
    }

    table th, table td {
      border: 1px solid #999;
      padding: 10px;
      text-align: center;
      font-size: 16px;
      font-weight: 500;
    }

    table th {
      background-color: #6c757d;
      color: rgb(128, 11, 11);
      font-weight: bold;
    }

    .highlight {
      color: #007bff;
    }
    
      .img-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #ccc;
    max-width: 506px;
    margin: 20px auto;
    }

    .img-1 img {
      height: 150px;
      width: 150;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .img-1 h1 {
      color: rgb(128, 11, 11);
      font-weight: bold;
      font-size: 22px;
      margin: 0;
      text-align: center;
    }

    /*  */
    /*  */
.fab-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 35px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-whatsapp img {
    width: 45px;
    height: 45px;
}

.fab-whatsapp:hover {
    background-color: #2dab9c;
    
    transform: scale(1.28);  
}

/*  */
.fab-call {
    position: fixed;
    bottom: 170px;
    right: 35px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-call img {
    width: 45px;
    height: 45px;
}

.fab-call:hover {
    background-color: #2dab9c;
    
    transform: scale(1.28);  


}
/*  */
.floating-box {
    position: fixed;
    right: 25px;
    bottom: 120px;
    width: 70px;
    padding: 12px 0;
    /* background: rgba(255, 255, 255, 0.35); */
    backdrop-filter: blur(8px);
    border-radius: 40px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    z-index: 9999;
}

/* Buttons */
.fab-btn {
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.fab-btn img {
    width: 48px;
    height: 48px;
}

/* Hover */
.fab-btn:hover {
    transform: scale(1.15);
    background: #1ebe5b;
}


.fab-btn.call:hover {
    background: #094fb4;
}

/*  */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.4s ease;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s ease;
}

.service-card h5 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-weight: 600;
  z-index: 2;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.service-card:hover img {
  transform: scale(1.1);
}
/*  */
.gallery-card {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-card img {
  width: 100%;
  height: 250px;      /* Same height for all */
  object-fit: cover;  /* Crop properly */
  transition: 0.4s;
}

.gallery-card img:hover {
  transform: scale(1.05);
}


/* Brand base style */
.brand-name {
    font-size: 1.5rem;        /* Default size */
    font-weight: 600;          /* Semi‑bold */
    margin: 0;                 /* Remove default <p> margin */
    line-height: 1.2;          /* Compact height */
    color: #333;               /* Dark gray for "Sri" and "Interior" */
    white-space: nowrap;       /* Keep text on one line (desktop) */
}

/* Accent color for "Annamalaiyar" */
.brand-name span {
    color: #F4C944;            /* Bright red */
}

/* On mobile, allow wrapping and reduce font size to fit */
@media (max-width: 576px) {
    .brand-name {
        font-size: 1.2rem;     /* Slightly smaller */
        white-space: normal;    /* Allow text to wrap if needed */
    }
}

/* For very small screens (e.g., < 400px), shrink further */
@media (max-width: 400px) {
    .brand-name {
        font-size: 1rem;
    }
}

/*  */

/* ==============================
   WHY CHOOSE SS TRADERS STYLE
================================*/

.choose-section {
    background: #f9fbff;
}

.choose-heading {
    font-weight: 700;
    font-size: 2.2rem;
    color: #222;
}

.choose-heading span {
    color: #f4d26e;
}

/* List Container */
.choose-list {
    max-width: 750px;
    margin: auto;
}

/* Each Item */
.choose-item {
    position: relative;
    padding: 18px 20px 18px 45px;
    margin-bottom: 18px;
    font-weight: 500;
    color: #333;
    border-left: 4px solid #f4d26e;
    background: linear-gradient(to right, rgba(13,110,253,0.05), transparent);
    transition: all 0.3s ease;
}

/* Circle Accent */
.choose-item::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 22px;
    width: 14px;
    height: 14px;
    background: #f4d26e;
    border-radius: 50%;
}

/* Hover Effect */
.choose-item:hover {
    background: linear-gradient(to right, rgba(253, 237, 13, 0.436), transparent);
    transform: translateX(8px);
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .choose-heading {
        font-size: 1.7rem;
    }

    .choose-item {
        padding: 15px 15px 15px 40px;
    }
}
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-top: 10px;
}

.product-card h5 {
    font-weight: 600;
}

/*  */
.routes-section {
            background: var(--secondary-color);
            padding: 100px 0;
        }
        
        .city-badge {
            display: inline-flex;
            align-items: center;
            background: white;
            padding: 10px 20px;
            border-radius: 50px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
            margin: 8px;
            border: 1px solid #eee;
            transition: all 0.3s;
        }
        
        .city-badge:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            border-color: var(--accent-color);
        }
        
        .city-badge i {
            color: var(--accent-color);
            margin-right: 8px;
        }
        
        .call-box {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-top: 5px solid var(--accent-color);
            margin-top: 50px;
            text-align: center;
        }
        
        .call-box p {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 25px;
        }
        
        
        
        .btn-call:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(245, 183, 0, 0.3);
        }
        .iso-section {
    background: #f8f9fa;
}

.iso-img {
    width: 100%;
    height: 300px;   /* same size */
    object-fit: contain;
}
.img-size{
    width: 100%;
}