/********** Template CSS **********/
:root {
    --primary: #fca432;
    --light: #ffffff;
    --dark: #021122;
}



/*** 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;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.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;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar {
    margin-top: 10px;
    border-radius: 50px;
    background-color: #646464;
}
.navbar .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #FFFFFF;
}

.sticky-top.navbar .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.sticky-top.navbar .navbar-nav .nav-link:hover,
.sticky-top.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .navbar-brand h1 {
    
    color: #f8f8f8;
    /* padding-top:1px; */
    font-size: 30px;
    font-family: "Gravitas One", serif;
    font-weight: bold;
    font-style: normal;
    
     
    
}
.navbar .navbar-brand img {
    max-height: 100px;
    transition: .5s;
}

.sticky-top.navbar .navbar-brand img {
    max-height: 110px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar {
        position: relative;
        background: #FFFFFF;
    }

    .navbar .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark);
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

    .navbar .navbar-brand h1 {
        color: var(--primary);
        padding-top:5px;
        font-size:12px;
        text-wrap: auto;
       
       
    }

    .navbar .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .2);
        z-index: 999;
    }
    
    .sticky-top.navbar {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        bottom: 10px;
        left: 0;
        background: #FFFFFF;
        opacity: 0;
        transition: .5s;
    }

    .sticky-top.navbar .navbar-nav .nav-link::before {
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link:hover::before,
    .navbar .navbar-nav .nav-link.active::before {
        bottom: -1px;
        left: 0;
        opacity: 1;
    }

    .navbar .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar .navbar-brand h1 {
        color: var(--primary);
        padding-top:5px;
        font-size: 28px;
        text-wrap: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
        background-color: #fda32e;
    }
}
/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 12rem 0 9rem 0;
    background: url(../img/shape-bottom.png) center bottom no-repeat;
}

.page-header {
    margin-bottom: 6rem;
    padding: 12rem 0 6rem 0;
    background: url(../img/page-header1.jpg) center bottom no-repeat;
   
}


@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }

    .page-header {
        padding: 6rem 0;
        background: url(../img/page-header1.jpg) center bottom no-repeat;
    }
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(256, 256, 256, .5);
}
/* hero slider start */
     .hero-section-container {
            display: flex;
            flex-direction: column; /* Stack vertically on small screens */
            background-color: #ffffff; /* White background for the section */
            border-radius: 20px; /* Rounded corners for the container */
            box-shadow: 0 10px 20px rgba(114, 114, 114, 0.1); /* Soft shadow */
            overflow: hidden; /* Hide overflow for rounded corners */
            margin: 10px auto; /* Center the container with margin */
            position: relative; /* For absolute positioning of overlay content */
            min-height: 750px; /* Define a minimum height for the hero section */
        }

        @media (min-width: 768px) {
            .hero-section-container {
                flex-direction: row; /* Side-by-side on larger screens - but content is now overlaid */
                min-height: 750px; /* Minimum height for better visual balance on desktop */
            }
        }

        /* The full-width slider area (now container for animated images) */
        .hero-slider-area {
            position: absolute;
            top: 15%;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden; /* Ensure images stay within bounds */
            border-radius: 20px; /* Match container border-radius */
        }

        .slider-image {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Cover the container */
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0; /* Start hidden */
            animation: slideShow 12s infinite linear; /* Total duration: 6 images * 4s per image */
        }

        /* Define animation delays for each image */
        .slider-image:nth-child(1) { animation-delay: 0s; }
        .slider-image:nth-child(2) { animation-delay: 2s; }
        .slider-image:nth-child(3) { animation-delay: 4s; }
        .slider-image:nth-child(4) { animation-delay: 6s; }
        .slider-image:nth-child(5) { animation-delay: 8s; }
        .slider-image:nth-child(6) { animation-delay: 10s; }


        @keyframes slideShow {
            0% { opacity: 0; }
            4% { opacity: 1; } /* Fade in */
            15% { opacity: 1; } /* Stay visible */
            19% { opacity: 0; } /* Fade out */
            100% { opacity: 0; } /* Stay hidden until next cycle */
        }


        /* Overlay for dimming effect and text readability */
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(2, 2, 2, 0.5); /* Semi-transparent dark overlay */
            z-index: 5; /* Above images, below controls and text */
        }

        /* Overlay text content and buttons */
        .hero-content-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 10; /* Above images and overlay */
            max-width: 1200px; /* Constrain text width */
            width: 100%; /* Fluid width */
            padding: 20px;
            color: #ffffff; /* White text for contrast */
        }

        .hero-content-overlay h1 {
            font-size: 2.8rem; /* Larger heading */
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
            color: #ffffff; /* White heading color */
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for readability */
        }

        .hero-content-overlay p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            color: #f0f4f8; /* Slightly off-white for body text */
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        }

        .hero-buttons {
            display: flex;
            margin-top: 55px;
            gap: 45px; /* Space between buttons */
            flex-wrap: wrap; /* Wrap buttons if screen is too small */
            justify-content: center; /* Center buttons */
        }

        .hero-btn {
            padding: 14px 28px;
            size: 50px;
            border-radius: 12px; /* Rounded buttons */
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease; /* Smooth transition for hover effects */
            display: inline-block; /* Ensure padding applies correctly */
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Stronger button shadow */
        }

        /* Orange and Black Theme */
        .hero-btn-primary {
            background-color: #FF8C00; /* Orange */
            color: #ffffff; /* White text */
            border: 2px solid #FF8C00;
        }

        .hero-btn-primary:hover {
            background-color: #CC7000; /* Darker orange on hover */
            transform: translateY(-2px); /* Slight lift effect */
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
        }

        .hero-btn-secondary {
            background-color: rgba(26, 26, 26, 0.5); /* Semi-transparent black */
            color: #ffffff; /* Orange text */
            border: 2px solid rgba(255, 140, 0, 0.6); /* Semi-transparent orange border */
            backdrop-filter: blur(5px); /* Frosted glass effect */
        }

        .hero-btn-secondary:hover {
            background-color: rgba(26, 26, 26, 0.7); /* More opaque black on hover */
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
        }

        /* Hidden elements that previously relied on JS */
        .slider-nav-buttons, .slider-dots {
            display: none;
        }


/* hero slider end  */

/* product card and page section start here */
/* Product Card Styles */
        .product-card-container {
            display: flex;
            flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
            justify-content: center;
            gap: 30px; /* Space between cards */
            padding: 50px 20px;
            max-width: 1200px;
            width: 100%; /* Full width within its parent */
            margin-top: 20px; /* Space from the hero section, adjusted for no hero */
        }

        .product-card {
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            width: 100%; /* Full width on very small screens */
            max-width: 350px; /* Max width for individual cards */
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* Push button to bottom */
            padding-bottom: 20px; /* For button padding */
        }

        .product-card:hover {
            transform: translateY(-10px); /* Lift effect */
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Deeper shadow */
            border: 1px solid red;
        }

        .product-card-image {
            width: 100%;
            height: 200px; /* Fixed height for consistent image size */
            object-fit: cover;
            border-radius: 15px 15px 0 0; /* Rounded top corners */
        }

        .product-card-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1; /* Allow content to take available space */
        }

        .product-card-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 10px;
        }

        .product-card-content p {
            font-size: 0.95rem;
            color: #4a5568;
            line-height: 1.5;
            margin-bottom: 20px;
            flex-grow: 1; /* Allow paragraph to push button down */
        }

        .product-card-button {
            background-color: #f89114; /* Orange */
            color: #ffffff;
            border: none;
            padding: 12px 25px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease;
            display: inline-block; /* For proper padding and centering */
            margin-top: auto; /* Push button to the bottom if content is short */
        }

        .product-card-button:hover {
            background-color: #CC7000; /* Darker orange on hover */
            transform: translateY(-2px);
        }
/* product card and page section ends here */

/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    box-shadow: none;
    border-color: var(--primary);
}

.service-item .service-icon,
.service-item .service-btn {
    margin: -1px 0 0 -1px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 5px 0;
    transition: .5s;
}

.service-item .service-btn {
    margin: -1px -1px 0 0;
    border-radius: 0 5px;
    opacity: 0;
}

.service-item:hover .service-btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transform: scale(.85);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: none;
    border-color: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-item img {
    width: 50px;
    height: 50px;
}

.testimonial-carousel .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 30px;
    text-align: center;
    transition: .5s;
    z-index: 1;
}

.team-item::before,
.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    top: 0;
    left: 0;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: -1;
}

.team-item::after {
    top: auto;
    bottom: 0;
}

.team-item:hover::before,
.team-item:hover::after {
    background: var(--primary);
}

.team-item h5,
.team-item p {
    transition: .5s;
}

.team-item:hover h5,
.team-item:hover p {
    color: #FFFFFF;
}

.team-item img {
    padding: 15px;
    border: 1px solid var(--primary);
}
/* map-container-start */
.map-container {
    position: relative;
    width: 95%;
    padding-bottom: 45.25%; /* 16:9 aspect ratio */
    margin-left: 5%;
  }
  
  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    height: 100%;
    border: none;
  }
  @media only screen and (max-width: 1768px) {
    .map-container {
      padding: 10px;
    }
    .map-container iframe {
      height: 200px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .map-container {
      padding: 5px;
    }
    .map-container iframe {
      height: 150px;
    }
  }
  
/* map-container-end   */
/* Social Media Section Styles */
.social-media-section {
   
    max-width: 800px;
    margin: 20px auto;
    /* padding: 10px; */
    /* background-color: #f7f7f7; */
    /* border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  }
  

  
  .social-container {
    display:flex;
    flex-wrap: wrap;

    
    /* padding: 15px;
    margin-bottom: 20px; */
  }
  

  .social-container iframe {
    width: 100%;
    /* height: 150px; */
    /* border: none; */
  }
  
  /* Responsive Media Queries */
  @media only screen and (max-width: 768px) {
    .social-media-section {
      padding: 10px;
    }
    .social-container iframe {
      height: 200px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .social-media-section {
      padding: 5px;
    }
    .social-container iframe {
      height: 150px;
    }
  }
  
/* whatsapp buton with responsive media quiry */

.whatsapp-button{
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 99;
    background-color: #25d366;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    width: 50px;
    height: 50px;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    animation: effect 5s infinite ease-in;
}

@keyframes effect {
    20%, 100% {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    0%, 10%{
        width: 55px;
        height: 55px;
        font-size: 35px;
    }
    5%{
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}
/* whatsapp button style ends here. */
  

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}