/* ==========================
   GLOBAL
========================== */

:root {

    --primary-color: #8c1d18;
    --secondary-color: #f4b400;
    --text-dark: #222;
    --white: #fff;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;

}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ==========================
   HEADER
========================== */

.main-header {

    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;

    transition: .3s ease;

}

.navbar {

    padding: 18px 0;

}

.navbar-brand img {

    height: 70px;

}

/* MENU */

.navbar-nav {

    gap: 10px;

}

.nav-link {

    color: #fff !important;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 16px !important;
    transition: .3s;

}

.nav-link:hover {

    color: var(--secondary-color) !important;

}

/* BUTTON */

.btn-order {

    background: var(--secondary-color);
    color: #000;

    padding: 12px 30px;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;

}

.btn-order:hover {

    background: #ffc107;
    color: #000;

}

/* STICKY HEADER */

.main-header.sticky {

    position: fixed;
    background: #fff;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);

}

.main-header.sticky .nav-link {

    color: #222 !important;

}

/* MOBILE */

@media(max-width:1199px){

    .navbar-collapse{

        background:#fff;
        padding:20px;
        border-radius:12px;
        margin-top:15px;

    }

    .nav-link{

        color:#222 !important;

    }

    .header-btn{

        margin-top:15px;

    }

}

@media(max-width:768px){

    .navbar-brand img{

        height:55px;

    }

}

/* ==========================
   DROPDOWN MENU
========================== */

.dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 10px 0;
    min-width: 240px;

    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    margin-top: 15px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: all 0.3s ease;
}

.dropdown-item {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #222;

    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f8f8f8;
    color: var(--primary-color);
    padding-left: 28px;
}

/* Desktop Hover Dropdown */

@media (min-width: 1200px) {

    .navbar .dropdown:hover .dropdown-menu {
        display: block;

        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .navbar .dropdown-menu {
        display: block;
    }
}

/* Dropdown Arrow Animation */

.dropdown-toggle::after {
    margin-left: 8px;
    transition: 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Active Dropdown Parent */

.dropdown:hover > .nav-link {
    color: var(--secondary-color) !important;
}

/* Mobile Dropdown */

@media (max-width: 1199px) {

    .dropdown-menu {

        opacity: 1;
        visibility: visible;
        transform: none;

        display: none;

        box-shadow: none;
        border-radius: 8px;

        background: #f8f8f8;
        margin-top: 0;
        margin-left: 15px;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 10px 15px;
    }
}

/* ==========================
   HERO SLIDER
========================== */

.hero-slider {
    position: relative;
}

.heroSwiper {
    width: 100%;
    height: 100vh;
}

.heroSwiper .swiper-slide {
    width: 100%;
    height: 100vh;
}

.heroSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation */

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

/* Pagination */

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: .6;
}

.swiper-pagination-bullet-active {
    background: #f4b400;
    opacity: 1;
}

/* Responsive */

@media (max-width: 991px) {
    .heroSwiper,
    .heroSwiper .swiper-slide {
        height: 75vh;
    }
}

@media (max-width: 767px) {

    .heroSwiper,
    .heroSwiper .swiper-slide {
        height: 60vh;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* ==========================
   ABOUT SECTION
========================== */

.about-section {

    position: relative;

    background: #f5f5f5;

    overflow: hidden;

    padding: 100px 0;
}

/* Background Pattern */

.about-section::before {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 300px;

    background: url('../images/pattern.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;

    opacity: .15;
}

/* Content */

.about-content {
    position: relative;
    z-index: 2;
}

.section-tag {

    display: inline-block;

    color: #7b1612;

    font-weight: 700;

    margin-bottom: 15px;

    font-size: 18px;
}

.about-content h2 {

    font-size: 48px;
    font-weight: 700;

    color: #34416f;

    margin-bottom: 25px;
}

.about-content p {

    color: #666;

    line-height: 1.9;

    margin-bottom: 15px;

    font-size: 14px;
}

/* Button */

.about-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-top: 20px;

    width: 170px;
    height: 55px;

    background: #f4b400;

    color: #333;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;
}

.about-btn:hover {

    background: #d69a00;

    color: #fff;
}

/* Image */

.about-image-wrapper {

    position: relative;

    text-align: center;
}

.about-image {

    max-width: 100%;

    animation: floatImage 4s ease-in-out infinite;
}

/* Experience Circle */

.experience-box {

    position: absolute;

    right: 20px;
    bottom: 20px;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: #fff;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.experience-box h3 {

    font-size: 70px;

    color: #f4b400;

    font-weight: 700;

    margin-bottom: 5px;
}

.experience-box p {

    color: #555;

    font-weight: 600;

    margin: 0;

    text-align: center;
}

/* Animation */

@keyframes floatImage {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {

    .about-content {

        text-align: center;

        margin-bottom: 50px;
    }

    .about-content h2 {

        font-size: 38px;
    }

    .experience-box {

        width: 180px;
        height: 180px;

        right: 0;
    }

    .experience-box h3 {

        font-size: 55px;
    }
}

@media (max-width: 767px) {

    .about-section {

        padding: 70px 0;
    }

    .about-content h2 {

        font-size: 32px;
    }

    .about-content p {

        font-size: 15px;
    }

    .experience-box {

        width: 140px;
        height: 140px;

        bottom: -20px;
    }

    .experience-box h3 {

        font-size: 42px;
    }

    .experience-box p {

        font-size: 13px;
    }
}


/* ==========================
   PRODUCTS SECTION
========================== */

.products-section {

    background: #f5f5f5;

    padding: 90px 0;

    position: relative;
}

.products-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 50px;
}

.products-header h2 {

    font-size: 52px;

    font-weight: 700;

    color: #34416f;

    margin: 0;
}

.products-btn {

    background: #f4b400;

    color: #000;

    padding: 14px 35px;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;
}

.products-btn:hover {

    background: #d69a00;

    color: #fff;
}

.product-card {

    text-align: center;

    padding: 20px;
}

.product-card img {

    max-width: 100%;

    height: 320px;

    object-fit: contain;

    transition: .4s ease;
}

.product-card:hover img {

    transform: translateY(-10px);
}

/* Navigation */

.product-next,
.product-prev {

    width: 45px;
    height: 45px;

    background: #fff;

    border-radius: 50%;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.product-next::after,
.product-prev::after {

    color: #ccc;

    font-size: 16px;

    font-weight: 700;
}

.product-next:hover,
.product-prev:hover {

    background: #f4b400;
}

.product-next:hover::after,
.product-prev:hover::after {

    color: #fff;
}

/* Pagination */

.product-pagination {

    margin-top: 20px;
    position: relative;
}

.product-pagination .swiper-pagination-bullet {

    width: 10px;
    height: 10px;

    background: #ccc;

    opacity: 1;
}

.product-pagination .swiper-pagination-bullet-active {

    background: #000;
}

/* Responsive */

@media(max-width:991px){

    .products-header{

        flex-direction: column;

        gap: 20px;

        text-align: center;
    }

    .products-header h2{

        font-size: 40px;
    }

}

@media(max-width:767px){

    .products-section{

        padding:70px 0;
    }

    .products-header h2{

        font-size:32px;
    }

    .product-card img{

        height:260px;
    }

    .product-next,
    .product-prev{

        display:none;
    }

}



/* ==========================
   WHY KD MASALA
========================== */

.why-kd-section{

    padding:90px 0;

    background:#f7f7f7;
}

.why-card{

    background:#fff;

    border:2px solid #ececec;

    padding:50px 35px;

    min-height:300px;

    text-align:center;

    transition:.4s ease;

    height:100%;
}

.why-card:hover{

    transform:translateY(-8px);

    border-color:#f4b400;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.why-icon{

    width:80px;
    height:80px;

    margin:0 auto 25px;

    background:#fff8e6;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;
}

.why-icon i{

    font-size:34px;

    color:#f4b400;
}

.why-card h3{

    color:#34416f;

    font-size:34px;

    font-weight:700;

    margin-bottom:20px;

    line-height:1.3;
}

.why-card p{

    color:#666;

    font-size:18px;

    line-height:1.8;

    margin:0;
}

/* Responsive */

@media(max-width:991px){

    .why-card{

        min-height:auto;
    }

    .why-card h3{

        font-size:28px;
    }

}

@media(max-width:767px){

    .why-kd-section{

        padding:70px 0;
    }

    .why-card{

        padding:40px 25px;
    }

    .why-card h3{

        font-size:24px;
    }

    .why-card p{

        font-size:16px;
    }

}

/* ==========================
   CTA SECTION
========================== */

.cta-section{

    padding:100px 0;

    background:#f5f5f5;
}

.cta-wrapper{

    background:#f3f4f6;

    border-radius:20px;

    padding:70px 80px;

    position:relative;

    overflow:hidden;
}

/* Background Pattern */

.cta-wrapper::before{

    content:"";

    position:absolute;

    inset:0;

    background:url('../images/pattern.png');

    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;

    opacity:.08;

    pointer-events:none;
}

.cta-content,
.cta-image{

    position:relative;
    z-index:2;
}

.cta-tag{

    display:inline-block;

    color:#7b1612;

    font-size:18px;

    font-weight:700;

    margin-bottom:20px;
}

.cta-content h2{

    font-size:60px;

    line-height:1.15;

    font-weight:700;

    color:#34416f;

    margin-bottom:25px;
}

.cta-content p{

    font-size:18px;

    color:#666;

    line-height:1.8;

    max-width:650px;

    margin-bottom:35px;
}

.cta-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    width:180px;
    height:58px;

    background:#f4b400;

    color:#000;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.cta-btn:hover{

    background:#d89d00;

    color:#fff;
}

.cta-image img{

    max-width:100%;

    animation:floatImage 4s ease-in-out infinite;
}

/* Responsive */

@media(max-width:991px){

    .cta-wrapper{

        padding:50px 35px;
    }

    .cta-content{

        text-align:center;

        margin-bottom:40px;
    }

    .cta-content h2{

        font-size:42px;
    }
}

@media(max-width:767px){

    .cta-section{

        padding:70px 0;
    }

    .cta-wrapper{

        padding:40px 25px;
    }

    .cta-content h2{

        font-size:32px;
    }

    .cta-content p{

        font-size:16px;
    }

    .cta-btn{

        width:160px;
        height:54px;
    }
}

/* ==========================
   FOOTER
========================== */

.footer-section{

    background:#ead59d;

    padding:80px 0 25px;

}

.footer-logo img{

    max-width:180px;
}

.footer-widget h4{

    font-size:36px;

    font-weight:700;

    color:#34416f;

    margin-bottom:25px;
}

.footer-widget p{

    color:#4f4f65;

    line-height:1.7;
}

.footer-widget ul{

    padding:0;
    margin:0;
}

.footer-widget ul li{

    list-style:none;

    margin-bottom:18px;
}

.footer-widget ul li a{

    color:#4f4f65;

    transition:.3s;
}

.footer-widget ul li a:hover{

    color:#7b1612;
}

.footer-widget ul li i{

    color:#7b1612;

    margin-right:10px;
}

.contact-info li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:#4f4f65;

    line-height:1.8;
}

.contact-info li i{

    margin-top:5px;
}

.footer-social{

    display:flex;

    gap:10px;

    margin-top:20px;
}

.footer-social a{

    width:48px;
    height:48px;

    background:#6d0b0b;

    color:#fff;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:22px;

    transition:.3s;
}

.footer-social a:hover{

    background:#34416f;

    color:#fff;
}

.footer-bottom{

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.4);

    text-align:center;
}

.footer-bottom p{

    margin:0;

    color:#4f4f65;

    font-size:16px;
}

/* Responsive */

@media(max-width:991px){

    .footer-section{

        text-align:center;
    }

    .contact-info li{

        justify-content:center;
        text-align:left;
    }

    .footer-social{

        justify-content:center;
    }

    .footer-widget h4{

        font-size:30px;
    }

}

@media(max-width:767px){

    .footer-section{

        padding:60px 0 20px;
    }

    .footer-widget h4{

        font-size:26px;
    }

}



/*about page css */


/* ==========================
   PAGE BANNER
========================== */

.page-banner{

    background: linear-gradient(rgba(52,65,111,.85), rgba(52,65,111,.85)),
    url('../images/banner-bg.jpg');

    background-size: cover;
    background-position: center;

    padding: 180px 0 100px;

    text-align: center;

    color: #fff;
}

.page-banner h1{

    font-size: 70px;
    font-weight: 700;

    margin-bottom: 15px;
}

.page-banner nav{

    font-size: 16px;
}

.page-banner nav a{

    color: #f4b400;
}

.page-banner nav span{

    margin: 0 5px;
}

/* ==========================
   ABOUT PAGE
========================== */

.about-page-section{

    padding:100px 0;

    background:#fff;
}

.about-page-section .about-content h2{

    font-size:50px;

    color:#34416f;

    margin-bottom:25px;

    font-weight:700;
}

.about-page-section .about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:15px;
}

.about-page-section .about-image{

    position:relative;
}

.about-page-section .about-image img{

    border-radius:20px;
}

.experience-box{

    position:absolute;

    right:-20px;
    bottom:30px;

    width:180px;
    height:180px;

    border-radius:50%;

    background:#f4b400;

    display:flex;

    flex-direction:column;

    justify-content:center;
    align-items:center;

    color:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.experience-box h3{

    font-size:60px;

    margin:0;

    font-weight:700;
}

.experience-box p{

    margin:0;

    font-weight:600;
}

/* ==========================
   COMPANY STORY
========================== */

.company-story{

    padding:100px 0;

    background:#f8f8f8;
}

.company-story h2{

    color:#34416f;

    font-size:48px;

    font-weight:700;

    margin-top:10px;
}

.company-story p{

    color:#666;

    line-height:1.9;
}

/* ==========================
   VALUES
========================== */

.values-section{

    padding:100px 0;

    background:#fff;
}

.values-section h2{

    color:#34416f;

    font-size:48px;

    font-weight:700;

    margin-bottom:20px;
}

.value-card{

    background:#fff;

    padding:40px 30px;

    border:1px solid #eee;

    border-radius:20px;

    text-align:center;

    height:100%;

    transition:.4s;
}

.value-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.value-card i{

    font-size:50px;

    color:#f4b400;

    margin-bottom:20px;

    display:block;
}

.value-card h3{

    color:#34416f;

    font-size:28px;

    margin-bottom:15px;

    font-weight:700;
}

.value-card p{

    color:#666;

    line-height:1.8;
}

/* ==========================
   WHY CHOOSE US
========================== */

.why-kd-section{

    padding:100px 0;

    background:#f8f8f8;
}

.why-kd-section h2{

    color:#34416f;

    font-size:48px;

    font-weight:700;
}

.why-card{

    background:#fff;

    padding:45px 30px;

    text-align:center;

    border-radius:15px;

    border:1px solid #eee;

    transition:.4s;

    height:100%;
}

.why-card:hover{

    border-color:#f4b400;

    transform:translateY(-8px);
}

.why-card h3{

    color:#34416f;

    font-size:30px;

    margin-bottom:15px;

    font-weight:700;
}

.why-card p{

    color:#666;

    line-height:1.8;
}

/* ==========================
   COUNTERS
========================== */

.counter-section{

    padding:90px 0;

    background:#34416f;
}

.counter-box{

    color:#fff;
}

.counter-box h3{

    font-size:60px;

    color:#f4b400;

    font-weight:700;

    margin-bottom:10px;
}

.counter-box p{

    font-size:18px;

    margin:0;
}

/* ==========================
   SECTION TAG
========================== */

.section-tag{

    display:inline-block;

    color:#7b1612;

    font-weight:700;

    font-size:18px;

    margin-bottom:15px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .page-banner h1{
        font-size:50px;
    }

    .about-page-section .about-content{
        margin-top:40px;
    }

    .experience-box{

        width:140px;
        height:140px;
    }

    .experience-box h3{
        font-size:40px;
    }

    .company-story h2,
    .values-section h2,
    .why-kd-section h2,
    .about-page-section .about-content h2{

        font-size:38px;
    }
}

@media(max-width:767px){

    .page-banner{

        padding:140px 0 80px;
    }

    .page-banner h1{

        font-size:38px;
    }

    .about-page-section,
    .company-story,
    .values-section,
    .why-kd-section{

        padding:70px 0;
    }

    .counter-section{

        padding:60px 0;
    }

    .counter-box{

        margin-bottom:30px;
    }

    .counter-box h3{

        font-size:42px;
    }

    .about-page-section .about-content h2,
    .company-story h2,
    .values-section h2,
    .why-kd-section h2{

        font-size:30px;
    }
}

/* ==========================
   CONTACT PAGE
========================== */

.contact-page{

    padding:100px 0;

    background:#f8f8f8;
}

.contact-info-wrapper h2{

    font-size:52px;

    color:#34416f;

    font-weight:700;

    margin-bottom:20px;
}

.contact-info-wrapper > p{

    color:#666;

    line-height:1.8;

    margin-bottom:40px;
}

.contact-box{

    display:flex;

    gap:20px;

    margin-bottom:30px;
}

.contact-icon{

    min-width:65px;
    height:65px;

    border-radius:50%;

    background:#f4b400;

    color:#fff;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:24px;
}

.contact-box h4{

    color:#34416f;

    font-size:22px;

    margin-bottom:8px;

    font-weight:700;
}

.contact-box p,
.contact-box a{

    color:#666;

    text-decoration:none;
}

/* FORM */

.contact-form-wrapper{

    background:#fff;

    padding:50px;

    border-radius:20px;

    box-shadow:0 10px 40px rgba(0,0,0,.05);
}

.contact-form-wrapper h3{

    color:#34416f;

    font-size:36px;

    margin-bottom:30px;

    font-weight:700;
}

.contact-form-wrapper .form-control{

    height:58px;

    border:1px solid #ddd;

    border-radius:12px;

    padding:15px 20px;

    box-shadow:none;
}

.contact-form-wrapper textarea.form-control{

    height:auto;
}

.contact-form-wrapper .form-control:focus{

    border-color:#f4b400;
}

.contact-btn{

    border:none;

    background:#f4b400;

    color:#000;

    padding:14px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.contact-btn:hover{

    background:#34416f;

    color:#fff;
}

/* MAP */

.map-section iframe{

    width:100%;

    height:450px;

    border:0;
}

/* RESPONSIVE */

@media(max-width:991px){

    .contact-info-wrapper{

        margin-bottom:50px;
    }

    .contact-info-wrapper h2{

        font-size:40px;
    }

    .contact-form-wrapper{

        padding:35px;
    }

}

@media(max-width:767px){

    .contact-page{

        padding:70px 0;
    }

    .contact-info-wrapper h2{

        font-size:32px;
    }

    .contact-form-wrapper{

        padding:25px;
    }

    .contact-form-wrapper h3{

        font-size:28px;
    }

}


.products-page{
    padding:100px 0;
    background:#f8f8f8;
}

.product-box{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    height:100%;
    transition:.4s;
    border:1px solid #eee;
}

.product-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.product-box img{
    height:260px;
    width:100%;
    object-fit:contain;
    margin-bottom:20px;
}

.product-box h4{
    font-size:20px;
    color:#34416f;
    font-weight:600;
    min-height:55px;
}

.product-btn{
    display:inline-block;
    background:#f4b400;
    color:#000;
    padding:10px 25px;
    border-radius:50px;
    font-weight:600;
    margin-top:10px;
}

.product-btn:hover{
    background:#34416f;
    color:#fff;
}






