

        /* Welcome Section Container */
        .welcome-section {
            max-width: 1400px;
            margin: 0 auto;
            background: #FFFFFF;
            border-radius: 28px;
            padding: 60px 50px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .welcome-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        /* LEFT SIDE: Image */
        .welcome-image {
            flex: 1;
            min-width: 300px;
        }

        .welcome-image img {
            width: 100%;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
            object-fit: cover;
        }

        .welcome-image img:hover {
            transform: scale(1.02);
        }

        /* RIGHT SIDE: Content */
        .welcome-content {
            flex: 1;
            min-width: 300px;
            padding-left: 20px;
        }

        /* Top Heading - 24px */
        .welcome-top-heading {
            font-size: 1.5rem; /* 24px */
            font-weight: 700;
            color: #1749A9;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .welcome-top-heading::before {
            content: '';
            display: inline-block;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #1749A9, #E7B874);
            border-radius: 4px;
        }

        /* Main Heading - 36px */
        .welcome-main-heading {
            font-size: 2.25rem; /* 36px */
            font-weight: 800;
            color: #1B3B30;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .welcome-main-heading span {
            color: #1749A9;
            position: relative;
        }

        .welcome-main-heading span::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 6px;
            background: rgba(180, 111, 58, 0.2);
            border-radius: 4px;
        }

        /* Description Text */
        .welcome-text {
            font-size: 1rem;
            color: #6B6761;
            line-height: 1.7;
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* Buttons */
        .welcome-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .btn-contact {
            display: inline-flex;
            align-items: center;
            gap: 10px;
           background: linear-gradient(135deg, #1F4DFF 0%, #2e24a5 100%);
            color: #FFFFFF;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(31, 94, 75, 0.25);
        }

        .btn-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(31, 94, 75, 0.35);
            color: #FFFFFF;
            text-decoration: none;
        }

        .btn-readmore {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: #1F5E4B;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid #1F5E4B;
            cursor: pointer;
        }

        .btn-readmore:hover {
            background: #1F5E4B;
            color: #FFFFFF;
            transform: translateY(-3px);
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(31, 94, 75, 0.15);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .welcome-section {
                padding: 40px 30px;
            }
            .welcome-row {
                flex-direction: column;
            }
            .welcome-content {
                padding-left: 0;
                text-align: center;
            }
            .welcome-text {
                max-width: 100%;
            }
            .welcome-buttons {
                justify-content: center;
            }
            .welcome-top-heading {
                justify-content: center;
            }
            .welcome-main-heading {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 30px 15px;
            }
            .welcome-section {
                padding: 30px 20px;
                border-radius: 20px;
            }
            .welcome-main-heading {
                font-size: 1.5rem;
            }
            .welcome-top-heading {
                font-size: 1.2rem;
            }
            .welcome-text {
                font-size: 0.9rem;
            }
            .btn-contact,
            .btn-readmore {
                padding: 12px 24px;
                font-size: 0.85rem;
                width: 100%;
                justify-content: center;
            }
            .welcome-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            .welcome-image img {
                border-radius: 16px;
            }
        }

        @media (max-width: 480px) {
            .welcome-section {
                padding: 25px 15px;
            }
            .welcome-main-heading {
                font-size: 1.3rem;
            }
            .welcome-top-heading {
                font-size: 1rem;
            }
            .welcome-top-heading::before {
                width: 25px;
            }
            .btn-contact,
            .btn-readmore {
                padding: 10px 20px;
                font-size: 0.8rem;
            }
        }


.contact-form h3 {
  color: #271d1d;
  text-transform: uppercase;
  margin-top: 0;
}

.banner-area {
  position: relative;
  padding: 0;
  color: #fff;
  background-image: url("assets/images/inner-page.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner-area:after,.banner-area:before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 50%;
  z-index: 1;
  border-bottom: 30px solid #111;
  -moz-transform: rotate(0.000001deg);
  -webkit-transform: rotate(0.000001deg);
  -o-transform: rotate(0.000001deg);
  -ms-transform: rotate(0.000001deg);
  transform: rotate(0.000001deg);
}

.banner-area:before {
  right: 50%;
  border-right: 125px solid transparent;
}

.banner-area:after {
  left: 50%;
  border-left: 125px solid transparent;
}

.banner-area .banner-overlay {
  padding: 70px 0 90px;
  background-color: rgba(0, 0, 0, 0.3);
}

.banner-area .banner-text {
  margin: 0 auto;
  width: 100%;
  z-index: 1;
}

.banner-area .title-head .banner-post-title {
  line-height: 55px;
}

.banner-area hr {
  border-top: 2px solid #fff;
  background: transparent;
  width: 60px;
  margin: 0 auto;
  margin-top: 10px;
}

.banner-area .banner-title {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 45px;
  line-height: 45px;
}

.banner-area .banner-title span {
  color: #ffae11;
}

/*** Breadcrumb ***/

.banner-area .breadcrumb {
  font-size: 14px;
  text-transform: uppercase;
  margin: 15px 0 0;
  background: transparent;
}

.banner-area .breadcrumb>li {
  font-weight: 400;
}

.banner-area .breadcrumb>li a {
  font-weight: 600;
  color : #1749A9;
}

.banner-area .breadcrumb>li a:hover {
  opacity: .9;
}

.banner-area .breadcrumb>li+li:before {
  color: #fff;
}

.welcome-section {
  margin: 0px auto;
}

section.contact {
  padding: 90px 0 60px;
}

.contact-form h3 {
  color: #1749A9;
  text-transform: uppercase;
  margin-top: 0;
}

.title-head{
    font-size   :   50px;
}


        /* ===== TOP BAR STYLES ===== */
        .top-bar {
            background: #1749A9;  /* Dark green background */
            padding: 0px 0;
            border-bottom: 2px solid rgba(255, 255, 255, 0.08);
        }

        .top-bar .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .top-bar-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        /* Left Side - Contact Info */
        .top-bar-left {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 25px;
        }

        .top-bar-left .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.85rem;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .top-bar-left .contact-item:hover {
            color: #FADB9E;
            text-decoration: none;
        }

        .top-bar-left .contact-item i {
            font-size: 1rem;
            color: #FADB9E;
            width: 18px;
            text-align: center;
        }

        /* Separator between contact items */
        .top-bar-left .separator {
            color: rgba(255, 255, 255, 0.2);
            font-size: 1.2rem;
            font-weight: 300;
        }

        /* Right Side - Social Icons */
        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar-right .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.05);
        }

        .top-bar-right .social-link:hover {
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
            text-decoration: none;
        }

        /* Special hover colors for each social platform */
        .top-bar-right .social-link.facebook:hover {
            background: #1877F2;
            color: white;
        }
        .top-bar-right .social-link.twitter:hover {
            background: #000000;
            color: white;
        }
        .top-bar-right .social-link.linkedin:hover {
            background: #0A66C2;
            color: white;
        }
        .top-bar-right .social-link.instagram:hover {
            background: #E4405F;
            color: white;
        }
        .top-bar-right .social-link.youtube:hover {
            background: #FF0000;
            color: white;
        }

        /* Language / Quote Button (optional) */
        .top-bar-right .quote-btn {
            display: inline-block;
            background: #1749A9;
            color: white;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 6px 20px;
            border-radius: 40px;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-left: 15px;
            letter-spacing: 0.5px;
        }

        .top-bar-right .quote-btn:hover {
            background: #9B5E32;
            transform: translateY(-2px);
            text-decoration: none;
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .top-bar {
                padding: 12px 0;
            }
            .top-bar-content {
                flex-direction: column;
                gap: 12px;
            }
            .top-bar-left {
                justify-content: center;
                gap: 15px;
                flex-wrap: wrap;
            }
            .top-bar-left .separator {
                display: none;
            }
            .top-bar-left .contact-item {
                font-size: 0.75rem;
            }
            .top-bar-right {
                gap: 6px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .top-bar-right .social-link {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
            }
            .top-bar-right .quote-btn {
                font-size: 0.7rem;
                padding: 5px 16px;
                margin-left: 10px;
            }
        }

        @media (max-width: 480px) {
            .top-bar-left {
                flex-direction: column;
                gap: 8px;
            }
            .top-bar-left .contact-item {
                font-size: 0.7rem;
            }
            .top-bar-right {
                gap: 5px;
            }
            .top-bar-right .social-link {
                width: 28px;
                height: 28px;
                font-size: 0.7rem;
            }
            .top-bar-right .quote-btn {
                font-size: 0.65rem;
                padding: 4px 14px;
            }
        }

        /* ===== MAIN HEADER (for demo) ===== */
        .main-header {
            background: #FFFFFF;
            padding: 20px 0;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        .main-header .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #1B3B30;
        }
        .main-header .logo span {
            color: #1749A9;
        }
 

        /* Why Choose Us Section - Blue Background */
        .why-choose-section {
            max-width: 100%;
            margin: 0 auto;
            background: #052681;
            
            padding: 20px 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* Section Heading - Centered */
        .section-heading {
            text-align: center;
            margin-bottom: 45px;
        }

        .section-heading .badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            color: #FFFFFF;
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 1.5px;
            padding: 5px 18px;
            border-radius: 40px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .section-heading h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #FFFFFF;
            letter-spacing: -0.02em;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

    

        .section-heading p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.05rem;
            max-width: 600px;
            margin: 25px auto 0;
            line-height: 1.6;
        }

        /* 6 Cards in One Row - Flexbox */
        .cards-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
        }

        .card-col {
            flex: 0 0 16.666%;
            max-width: 16.666%;
            padding: 0 10px;
        }

        /* Individual Card - White Border */
        .why-card {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: 18px;
            padding: 28px 18px 25px;
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
            cursor: pointer;
        }

        .why-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: #FFFFFF;
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* Icon */
        .why-card .icon {
            width: 65px;
            height: 65px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            transition: all 0.3s ease;
        }

        .why-card:hover .icon {
            background: rgba(255, 255, 255, 0.22);
            transform: scale(1.05);
        }

        .why-card .icon i {
            font-size: 28px;
            color: #FADB9E;
        }

        /* Heading */
        .why-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 10px;
            letter-spacing: -0.2px;
        }

        /* Description - 2 lines */
        .why-card p {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.5;
            margin-bottom: 0;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .why-choose-section {
                padding: 50px 30px;
            }
            .card-col {
                flex: 0 0 33.333%;
                max-width: 33.333%;
                margin-bottom: 20px;
            }
            .why-card {
                padding: 25px 15px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 30px 15px;
            }
            .why-choose-section {
                padding: 35px 20px;
                border-radius: 20px;
            }
            .section-heading h2 {
                font-size: 1.8rem;
            }
            .section-heading p {
                font-size: 0.9rem;
            }
            .card-col {
                flex: 0 0 50%;
                max-width: 50%;
                margin-bottom: 18px;
                padding: 0 8px;
            }
            .why-card {
                padding: 20px 15px;
            }
            .why-card .icon {
                width: 55px;
                height: 55px;
            }
            .why-card .icon i {
                font-size: 22px;
            }
            .why-card h4 {
                font-size: 0.9rem;
            }
            .why-card p {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .why-choose-section {
                padding: 25px 12px;
            }
            .section-heading h2 {
                font-size: 1.5rem;
            }
            .section-heading h2:after {
                width: 60px;
            }
            .card-col {
                flex: 0 0 100%;
                max-width: 100%;
                margin-bottom: 15px;
                padding: 0 5px;
            }
            .why-card {
                padding: 18px 12px;
                border-radius: 14px;
            }
            .why-card .icon {
                width: 50px;
                height: 50px;
            }
            .why-card .icon i {
                font-size: 20px;
            }
            .why-card h4 {
                font-size: 0.85rem;
            }
            .why-card p {
                font-size: 0.75rem;
            }
        }
 
 

        /* Products Section - White Background */
        .products-section {
            max-width: 100%;
            margin: 0 auto;
            background: #FFFFFF;
           
            padding: 10px 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        /* Section Heading - Left Aligned */
        .section-heading {
            margin-bottom: 40px;
            position: relative;
        }

        .section-heading .badge {
            display: inline-block;
            background: rgba(31, 94, 75, 0.12);
            color: #1F5E4B;
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 1.5px;
            padding: 5px 18px;
            border-radius: 40px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .section-heading h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1B3B30;
            letter-spacing: -0.02em;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

   

        .section-heading p {
            color: #6B6761;
            font-size: 1.05rem;
            max-width: 550px;
            margin-top: 25px;
            line-height: 1.6;
        }

        /* Product Card */
        .product-card {
            background: #fff;
            border-radius: 20px;
            padding: 25px 20px 20px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid #F0E2D4;
            height: 100%;
            margin: 10px 0;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: #E0CBB4;
            background: #FFFFFF;
        }

        /* Product Image */
        .product-card .product-img {
            width: 100%;
            height: 180px;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 18px;
            background: #F0E2D4;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-card .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-img img {
            transform: scale(1.05);
        }

        /* Fallback icon if no image */
        .product-card .product-img .fallback-icon {
            font-size: 60px;
            color: #1749A9;
            opacity: 0.5;
        }

        /* Product Heading */
        .product-card h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #2C4A3E;
            margin-bottom: 10px;
            letter-spacing: -0.2px;
        }

        /* Description - 2 lines */
        .product-card p {
            font-size: 0.85rem;
            color: #6B6761;
            line-height: 1.5;
            margin-bottom: 15px;
            display: -webkit-box;
           
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 40px;
        }

        /* View More Link */
        .product-card .view-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            color: #1749A9;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 6px 0;
            border-bottom: 2px solid transparent;margin: 0 auto;
        }

        .product-card .view-link:hover {
            color: #1F5E4B;
            border-bottom-color: #1749A9;
            text-decoration: none;
            gap: 12px;
        }

        .product-card .view-link i {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .product-card .view-link:hover i {
            transform: translateX(5px);
        }

        /* Owl Carousel Custom Styling */
        .owl-nav {
            position: absolute;
            top: -70px;
            right: 0;
        }

        .owl-nav button {
            width: 44px;
            height: 44px;
            border-radius: 50% !important;
            background: #FEF9F2 !important;
            border: 1px solid #F0E2D4 !important;
            color: #1749A9 !important;
            font-size: 20px !important;
            transition: all 0.3s ease;
        }

        .owl-nav button:hover {
            background: #1F5E4B !important;
            color: white !important;
            border-color: #1F5E4B !important;
        }

        .owl-nav button.owl-prev {
            margin-right: 10px;
        }

        .owl-dots {
            text-align: center;
            margin-top: 30px;
        }

        .owl-dots .owl-dot span {
            width: 10px;
            height: 10px;
            background: #D4C9BB;
            margin: 0 5px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .owl-dots .owl-dot.active span {
            background: #1749A9;
            width: 30px;
            border-radius: 10px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .products-section {
                padding: 45px 30px;
            }
            .section-heading h2 {
                font-size: 2.2rem;
            }
            .product-card .product-img {
                height: 150px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 30px 15px;
            }
            .products-section {
                padding: 35px 20px;
                border-radius: 20px;
            }
            .section-heading h2 {
                font-size: 1.8rem;
            }
            .section-heading p {
                font-size: 0.9rem;
            }
            .owl-nav {
                top: -60px;
            }
            .owl-nav button {
                width: 36px;
                height: 36px;
                font-size: 16px !important;
            }
            .product-card {
                padding: 20px 15px;
            }
            .product-card .product-img {
                height: 130px;
            }
            .product-card h4 {
                font-size: 1rem;
            }
            .product-card p {
                font-size: 0.8rem;
                min-height: 36px;
            }
        }

        @media (max-width: 480px) {
            .products-section {
                padding: 25px 15px;
            }
            .section-heading h2 {
                font-size: 1.5rem;
            }
            .section-heading h2:after {
                width: 60px;
            }
            .product-card .product-img {
                height: 110px;
            }
            .owl-nav {
                top: -50px;
            }
            .owl-nav button {
                width: 30px;
                height: 30px;
                font-size: 14px !important;
            }
        }
 

      

        /* Best Selling Products Section - White Background */
        .best-selling-section {
            max-width: 100%;
            margin: 0 auto;
            background: #FFFFFF;
           
            padding: 10px 20px 50px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        /* Section Heading Row - Left Title + Right View All */
        .section-header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-end;
          
        }

        /* Left Side Heading */
        .section-heading {
            flex: 1;
        }

 
        .section-heading h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1B3B30;
            letter-spacing: -0.02em;
            position: relative;
            display: inline-block;
        }

    

        .section-heading p {
            color: #6B6761;
            font-size: 1.05rem;
            max-width: 500px;
            margin-top: 1px;
            line-height: 1.6;
        }

        /* Right Side - View All Products Link */
        .view-all-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            font-weight: 700;
            color: #1749A9;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 10px 0;
            border-bottom: 2px solid transparent;
            white-space: nowrap;
        }

        .view-all-link:hover {
            color: #1F5E4B;
            border-bottom-color: #1749A9;
            text-decoration: none;
            gap: 15px;
        }

        .view-all-link i {
            font-size: 0.85rem;
            transition: transform 0.3s ease;
        }

        .view-all-link:hover i {
            transform: translateX(5px);
        }

        /* Product Cards Grid */
        .products-grid {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .product-col {
            flex: 0 0 33.333%;
            max-width: 33.333%;
            padding: 0 15px;
        }

        /* Individual Product Card - Border 1px */
        .product-card {
            display: flex;
            flex-direction: column;
            border: 1px solid #E8DDD0;
            border-radius: 20px;
            padding: 25px 20px 22px;
            background: #fff;
            transition: all 0.4s ease;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
            border-color: #D4C4B2;
        }

        /* Image + Content Row */
        .product-card .card-row {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        /* Left Side - Image */
        .product-card .product-image {
            flex: 0 0 100px;
            width: 100px;
            height: 100px;
            border-radius: 16px;
            overflow: hidden;
            background: #F0E8DC;
            flex-shrink: 0;
        }

        .product-card .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        /* Right Side - Content */
        .product-card .product-info {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-card .product-info h4 {
            font-size: 1.1rem;
            font-weight: 800;
            color: #2C4A3E;
            margin-bottom: 8px;
            letter-spacing: -0.2px;
        }

        .product-card .product-info p {
            font-size: 0.85rem;
            color: #6B6761;
            line-height: 1.5;
            margin-bottom: 12px;
            flex: 1;
        }

        /* Know More Link - Right Side */
        .product-card .know-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            color: #1749A9;
            text-decoration: none;
            transition: all 0.3s ease;
            align-self: flex-start;
            border-bottom: 2px solid transparent;
            padding: 4px 0;
        }

        .product-card .know-more:hover {
            color: #1F5E4B;
            border-bottom-color: #1749A9;
            text-decoration: none;
            gap: 12px;
        }

        .product-card .know-more i {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .product-card .know-more:hover i {
            transform: translateX(5px);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .best-selling-section {
                padding: 45px 30px;
            }
            .section-heading h2 {
                font-size: 2.2rem;
            }
            .product-col {
                flex: 0 0 100%;
                max-width: 100%;
                margin-bottom: 20px;
            }
            .product-card .card-row {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .product-card .product-image {
                flex: 0 0 120px;
                width: 120px;
                height: 120px;
            }
            .product-card .know-more {
                align-self: center;
            }
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            .view-all-link {
                align-self: flex-start;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 30px 15px;
            }
            .best-selling-section {
                padding: 35px 20px;
                border-radius: 20px;
            }
            .section-heading h2 {
                font-size: 1.8rem;
            }
            .section-heading p {
                font-size: 0.9rem;
            }
            .section-heading h2:after {
                width: 60px;
            }
            .product-card {
                padding: 20px 15px;
            }
            .product-card .product-image {
                flex: 0 0 100px;
                width: 100px;
                height: 100px;
            }
            .product-card .product-info h4 {
                font-size: 1rem;
            }
            .product-card .product-info p {
                font-size: 0.8rem;
            }
            .view-all-link {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .best-selling-section {
                padding: 25px 15px;
            }
            .section-heading h2 {
                font-size: 1.5rem;
            }
            .product-card .product-image {
                flex: 0 0 80px;
                width: 80px;
                height: 80px;
            }
            .product-card .card-row {
                gap: 15px;
            }
            .view-all-link {
                font-size: 0.8rem;
            }
        }

        /* Our Process Section - White Background */
      
     

 

 

        /* Process Steps - Flex Layout */
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            padding: 20px 0;margin-top: 30px;
        }

        /* Individual Step */
        .process-step {
            flex: 1;
            text-align: center;
            padding: 0 10px;
            min-width: 120px;
            position: relative;
            z-index: 2;
        }

        /* Step Icon / Number */
        .step-icon {
            width: 80px;
            height: 80px;
           background: linear-gradient(135deg, #5F5BC4 0%, #1790e9 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
            box-shadow: 0 8px 20px rgba(31, 94, 75, 0.2);
        }

        .process-step:hover .step-icon {
            transform: scale(1.08);
            box-shadow: 0 12px 30px rgba(31, 94, 75, 0.3);
        }

        .step-icon i {
            font-size: 32px;
            color: #fff;
        }

        /* Step Number Badge */
        .step-number {
            position: absolute;
            top: -8px;
            right: -8px;
            width: 28px;
            height: 28px;
            background: #1749A9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 800;
            color: #FFFFFF;
            border: 2px solid #FFFFFF;
        }

        /* Step Title */
        .process-step h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #2C4A3E;
            margin-bottom: 8px;
            letter-spacing: -0.2px;
        }

        /* Step Description */
        .process-step p {
            font-size: 0.85rem;
            color: #6B6761;
            line-height: 1.5;
            max-width: 180px;
            margin: 0 auto;
        }

        /* CONNECTING LINE WITH ARROW - Between Steps */
        .step-connector {
            flex: 0 0 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            margin-top: 30px;
        }

        .step-connector .line {
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #1F5E4B, #1749A9);
            position: relative;
            border-radius: 4px;
        }

        .step-connector .line::after {
            content: '▶';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            color: #1749A9;
            font-size: 14px;
        }

        /* Bottom Button - Our Process with Background */
        .process-footer {
            text-align: center;
            margin-top: 45px;
        }

        .process-footer .process-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #1F5E4B 0%, #124734 100%);
            color: #FFFFFF;
            font-size: 1rem;
            font-weight: 700;
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(31, 94, 75, 0.25);
            border: none;
            cursor: pointer;
        }

        .process-footer .process-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(31, 94, 75, 0.35);
            color: #FFFFFF;
            text-decoration: none;
            gap: 18px;
        }

        .process-footer .process-btn i {
            transition: transform 0.3s ease;
        }

        .process-footer .process-btn:hover i {
            transform: translateX(5px);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .process-section {
                padding: 45px 30px;
            }
            .section-heading h2 {
                font-size: 2.2rem;
            }
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
            }
            .process-step {
                flex: 0 0 45%;
                margin-bottom: 30px;
            }
            .step-connector {
                flex: 0 0 10%;
                min-width: 30px;
            }
            .step-connector .line {
                width: 100%;
            }
            .process-step p {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 30px 15px;
            }
            .process-section {
                padding: 35px 20px;
                border-radius: 20px;
            }
            .section-heading h2 {
                font-size: 1.8rem;
            }
            .section-heading p {
                font-size: 0.9rem;
            }
            .process-step {
                flex: 0 0 100%;
                margin-bottom: 25px;
            }
            .step-connector {
                flex: 0 0 100%;
                height: 30px;
                margin-top: 0;
                margin-bottom: 5px;
            }
            .step-connector .line {
                width: 60%;
                margin: 0 auto;
            }
            .step-connector .line::after {
                right: -15px;
            }
            .step-icon {
                width: 70px;
                height: 70px;
            }
            .step-icon i {
                font-size: 28px;
            }
            .process-step p {
                max-width: 300px;
            }
            .process-footer .process-btn {
                padding: 12px 30px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .process-section {
                padding: 25px 15px;
            }
            .section-heading h2 {
                font-size: 1.5rem;
            }
            .section-heading h2:after {
                width: 60px;
            }
            .step-icon {
                width: 60px;
                height: 60px;
            }
            .step-icon i {
                font-size: 24px;
            }
            .step-number {
                width: 24px;
                height: 24px;
                font-size: 0.65rem;
            }
            .process-step h4 {
                font-size: 1rem;
            }
            .process-step p {
                font-size: 0.8rem;
            }
            .step-connector .line {
                width: 80%;
            }
            .process-footer .process-btn {
                padding: 10px 24px;
                font-size: 0.8rem;
            }
        }

         /* Testimonial Section - White Background */
        .testimonial-section {
            max-width: 1400px;
            margin: 0 auto;
            background: #FFFFFF;
            border-radius: 28px;
            padding: 60px 50px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        /* ===== LEFT COLUMN (col-4): Heading ===== */
        .testimonial-heading {
            padding-right: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .testimonial-heading .badge {
            display: inline-block;
            background: rgba(180, 111, 58, 0.12);
            color: #1749A9;
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 1.5px;
            padding: 5px 18px;
            border-radius: 40px;
            margin-bottom: 15px;
            text-transform: uppercase;
            width: fit-content;
        }

        .testimonial-heading h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1B3B30;
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin-bottom: 18px;
        }

        .testimonial-heading h2 span {
            color: #1749A9;
        }

        .testimonial-heading p {
            color: #6B6761;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            max-width: 350px;
        }

        .testimonial-heading .view-all-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            font-weight: 700;
            color: #1F5E4B;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
            padding: 8px 0;
            width: fit-content;
        }

        .testimonial-heading .view-all-link:hover {
            color: #1749A9;
            border-bottom-color: #1749A9;
            text-decoration: none;
            gap: 15px;
        }

        .testimonial-heading .view-all-link i {
            transition: transform 0.3s ease;
        }

        .testimonial-heading .view-all-link:hover i {
            transform: translateX(5px);
        }

        /* ===== RIGHT COLUMN (col-8): Owl Carousel ===== */
        .testimonial-carousel-wrapper {
            position: relative;
        }

        /* Testimonial Card */
        .testimonial-card {
            background: #FEF9F2;
            border-radius: 20px;
            padding: 28px 25px;
            border: 1px solid #F0E2D4;
            transition: all 0.4s ease;
            margin: 10px 8px;
            height: 100%;
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
            border-color: #D4C4B2;
        }

        /* Quote Icon */
        .testimonial-card .quote-icon {
            color: #1749A9;
            font-size: 1.6rem;
            opacity: 0.3;
            margin-bottom: 12px;
            display: block;
        }

        /* Star Ratings */
        .testimonial-card .stars {
            color: #E7B874;
            font-size: 0.85rem;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        /* Testimonial Text */
        .testimonial-card .testimonial-text {
            font-size: 0.95rem;
            color: #2C4A3E;
            line-height: 1.7;
            font-weight: 500;
            margin-bottom: 18px;
            font-style: italic;
            min-height: 65px;
        }

        /* Client Name */
        .testimonial-card .client-name {
            font-size: 1rem;
            font-weight: 800;
            color: #1B3B30;
            margin-bottom: 3px;
        }

        /* Client Designation */
        .testimonial-card .client-designation {
            font-size: 0.8rem;
            color: #1749A9;
            font-weight: 500;
        }

        /* Owl Carousel Custom Styling - Position arrows on top-right */
        .testimonial-carousel-wrapper .owl-nav {
            position: absolute;
            top: -65px;
            right: 0;
        }

        .testimonial-carousel-wrapper .owl-nav button {
            width: 40px;
            height: 40px;
            border-radius: 50% !important;
            background: #FEF9F2 !important;
            border: 1px solid #F0E2D4 !important;
            color: #1749A9 !important;
            font-size: 18px !important;
            transition: all 0.3s ease;
        }

        .testimonial-carousel-wrapper .owl-nav button:hover {
            background: #1F5E4B !important;
            color: white !important;
            border-color: #1F5E4B !important;
        }

        .testimonial-carousel-wrapper .owl-nav button.owl-prev {
            margin-right: 8px;
        }

        .testimonial-carousel-wrapper .owl-dots {
            text-align: center;
            margin-top: 30px;
        }

        .testimonial-carousel-wrapper .owl-dots .owl-dot span {
            width: 10px;
            height: 10px;
            background: #D4C9BB;
            margin: 0 5px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .testimonial-carousel-wrapper .owl-dots .owl-dot.active span {
            background: #1749A9;
            width: 30px;
            border-radius: 10px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .testimonial-section {
                padding: 45px 30px;
            }
            .testimonial-heading h2 {
                font-size: 2.2rem;
            }
            .testimonial-card .testimonial-text {
                min-height: auto;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 30px 15px;
            }
            .testimonial-section {
                padding: 35px 20px;
                border-radius: 20px;
            }
            .testimonial-heading {
                padding-right: 0;
                text-align: center;
                margin-bottom: 30px;
            }
            .testimonial-heading .badge {
                margin: 0 auto 15px;
            }
            .testimonial-heading h2 {
                font-size: 1.8rem;
            }
            .testimonial-heading p {
                max-width: 100%;
                margin: 0 auto 20px;
            }
            .testimonial-heading .view-all-link {
                margin: 0 auto;
            }
            .testimonial-carousel-wrapper .owl-nav {
                top: -55px;
            }
            .testimonial-carousel-wrapper .owl-nav button {
                width: 34px;
                height: 34px;
                font-size: 16px !important;
            }
            .testimonial-card {
                padding: 22px 18px;
            }
            .testimonial-card .testimonial-text {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .testimonial-section {
                padding: 25px 15px;
            }
            .testimonial-heading h2 {
                font-size: 1.5rem;
            }
            .testimonial-card {
                padding: 18px 14px;
            }
            .testimonial-card .testimonial-text {
                font-size: 0.85rem;
            }
            .testimonial-carousel-wrapper .owl-nav {
                top: -48px;
            }
            .testimonial-carousel-wrapper .owl-nav button {
                width: 30px;
                height: 30px;
                font-size: 14px !important;
            }
        }
     .contact-section {
            max-width: 1400px;
            margin: 0 auto;
            background: #FFFFFF;
            overflow: hidden;
        }

        .contact-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0;
            min-height: 500px;
        }

        /* ===== LEFT SIDE (40%) ===== */
        .contact-left {
            flex: 0 0 40%;
            max-width: 40%;
            background: linear-gradient(135deg, rgba(4, 46, 105, 0.88), rgba(3, 32, 118, 0.92)), 
                        url('https://images.unsplash.com/photo-1581092335871-2e1b9f9b4d6c?w=800&h=600&fit=crop') center/cover no-repeat;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 500px;
            position: relative;
        }

        .contact-left .sub-heading {
            font-size: 0.85rem;
            font-weight: 600;
            color: #FADB9E;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .contact-left h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #FFFFFF;
            line-height: 1.15;
            margin-bottom: 15px;
        }

        .contact-left h2 span {
            color: #FADB9E;
        }

        .contact-left p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            max-width: 350px;
        }

        /* ===== RIGHT SIDE (60%) ===== */
        .contact-right {
            flex: 0 0 60%;
            max-width: 60%;
            padding: 40px 45px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 500px;
          background: #fffbfb;
        }

        .contact-right .form-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1B3B30;
            margin-bottom: 5px;
        }

        .contact-right .form-subtitle {
            font-size: 0.9rem;
            color: #6B6761;
            margin-bottom: 25px;
        }

        /* Form Fields */
        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            font-size: 0.8rem;
            font-weight: 600;
            color: #2C4A3E;
            margin-bottom: 5px;
            display: block;
        }

        .form-group label .required {
            color: #E74C3C;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            font-size: 0.9rem;
            font-family: 'Inter', sans-serif;
            border: 1px solid #E0D6C8;
            border-radius: 8px;
            transition: all 0.3s ease;
            background: #FEFCFA;
            color: #1B3B30;
        }

        .form-control:focus {
            border-color: #B46F3A;
            outline: none;
            box-shadow: 0 0 0 3px rgba(180, 111, 58, 0.15);
        }

        .form-control::placeholder {
            color: #B5ADA5;
            font-size: 0.85rem;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 70px;
        }

        /* Captcha Row */
        .captcha-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
            margin-bottom: 18px;
        }

        .captcha-box {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #F5EFE6;
            padding: 8px 18px;
            border-radius: 8px;
            border: 1px solid #E0D6C8;
        }

        .captcha-box .captcha-text {
            font-size: 1.3rem;
            font-weight: 800;
            color: #1B3B30;
            letter-spacing: 4px;
            font-family: 'Courier New', monospace;
            background: #FFFFFF;
            padding: 4px 12px;
            border-radius: 4px;
            border: 1px dashed #B46F3A;
        }

        .captcha-box .refresh-captcha {
            color: #B46F3A;
            cursor: pointer;
            transition: transform 0.3s ease;
            font-size: 1.1rem;
        }

        .captcha-box .refresh-captcha:hover {
            transform: rotate(180deg);
        }

        .captcha-input {
            flex: 1;
            min-width: 120px;
        }

        .captcha-input .form-control {
            padding: 10px 14px;
        }

        /* Submit Button */
        .btn-submit {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #1c1266 0%, #124734 100%);
            color: #FFFFFF;
            font-size: 1rem;
            font-weight: 700;
            padding: 14px 40px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            box-shadow: 0 6px 20px rgba(7, 55, 149, 0.25);
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(31, 94, 75, 0.35);
        }

        .btn-submit i {
            transition: transform 0.3s ease;
        }

        .btn-submit:hover i {
            transform: translateX(5px);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .contact-left {
                flex: 0 0 100%;
                max-width: 100%;
                min-height: 280px;
                padding: 40px 35px;
            }
            .contact-left h2 {
                font-size: 2rem;
            }
            .contact-right {
                flex: 0 0 100%;
                max-width: 100%;
                padding: 35px 30px;
                min-height: auto;
            }
            .contact-row {
                min-height: auto;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 30px 15px;
            }
            .contact-left {
                padding: 30px 25px;
                min-height: 220px;
            }
            .contact-left h2 {
                font-size: 1.6rem;
            }
            .contact-left p {
                font-size: 0.9rem;
            }
            .contact-right {
                padding: 30px 20px;
            }
            .contact-right .form-title {
                font-size: 1.2rem;
            }
            .captcha-row {
                flex-direction: column;
                align-items: stretch;
            }
            .btn-submit {
                width: 100%;
                justify-content: center;
                padding: 14px 20px;
            }
        }

        @media (max-width: 480px) {
            .contact-left {
                padding: 25px 20px;
                min-height: 180px;
            }
            .contact-left h2 {
                font-size: 1.3rem;
            }
            .contact-right {
                padding: 25px 15px;
            }
            .form-control {
                padding: 10px 12px;
                font-size: 0.85rem;
            }
            .btn-submit {
                font-size: 0.9rem;
                padding: 12px 16px;
            }
        }