 :root {
            --primary-color: #8B4513;
            --secondary-color: #D2691E;
            --accent-color: #F4A460;
            --dark-color: #2C2C2C;
            --light-color: #F8F9FA;
            --text-color: #333333;
            --transition: all 0.3s ease;
        }

h1, h2, h3, .section-title {
    font-family: 'Playfair Display', serif;
}

body, p, a {
    font-family: 'Poppins', sans-serif;
}


h1, h2, h3, .section-title {
    font-family: 'Cinzel', serif;
}


@media (max-width: 576px) {
        p{
        text-align: center !important;
    }    
}



/* WhatsApp Button */
.floating-wpp {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  left: 10px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 999;
}

.floating-wpp img {
  width: 32px;
}

/* Call Button */
.floating-call {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 90px; /* Above WhatsApp */
  left: 10px;
  background: #0E9F6E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 999;
}

.floating-call img {
  width: 28px;
}

.copyright{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.copyright a{
  text-decoration: none;
  color: #8B4513;
}
.copyright a:hover{
    cursor: pointer;
  }

@media (max-width: 576px) {
  .copyright{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .copyright a:hover{
    cursor: pointer;
  }
}



   

        :root {
            --primary-color: #8B4513;
            --secondary-color: #D2691E;
            --accent-color: #F4A460;
            --dark-color: #2C2C2C;
            --light-color: #F8F9FA;
            --text-color: #333333;
            --transition: all 0.3s ease;
        }
        
        /* Enhanced Navbar Styles */
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
            padding: 12px 0;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        .navbar-scrolled {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
            padding: 8px 0;
        }
        
        .navbar-brand {
            width: 20px;
            height: 5vh;
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            transition: var(--transition);
            
        }
        .navbar-brand img{
          width: 8rem;
          height: 5rem;          
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
            transform: translateY(-1px);
        }
        
        .brand-icon {
            margin-right: 10px;
            font-size: 1.6rem;
            color: var(--accent-color);
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 8px;
            color: var(--dark-color);
            transition: var(--transition);
            position: relative;
            padding: 8px 12px !important;
            border-radius: 6px;
        }
        
        .nav-link:hover, .nav-link:focus {
            color: var(--primary-color);
            background-color: rgba(139, 69, 19, 0.05);
        }
        
        .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .nav-link.active:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 12px;
            right: 12px;
            height: 2px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            padding: 10px 0;
            margin-top: 8px;
            animation: fadeIn 0.3s ease;
        }
        
        .dropdown-item {
            padding: 10px 20px;
            font-weight: 500;
            color: var(--text-color);
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        
        .dropdown-item:hover, .dropdown-item:focus {
            background-color: rgba(139, 69, 19, 0.08);
            color: var(--primary-color);
        }
        
        .dropdown-item i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
            color: var(--accent-color);
        }
        
        .dropdown-divider {
            margin: 8px 0;
        }
        
        .navbar-toggler {
            border: none;
            padding: 6px 8px;
            border-radius: 6px;
            transition: var(--transition);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28139, 69, 19, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            width: 1.2em;
            height: 1.2em;
        }
        
        .cta-button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            transition: var(--transition);
            margin-left: 15px;
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .cta-button:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(139, 69, 19, 0.2);
        }
        
        .cta-button i {
            margin-right: 8px;
        }
        



    .service-card {
        height: 88vh;
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Image container */
.service-icon {
    width: 100%;
    height: 220px; /* Adjust height as needed */
    overflow: hidden;
    border-radius: 12px;
}

/* Responsive image */
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures full fit without distortion */
    display: block;
}

  #services .service-card{
            height: 53vh;
        }



        /* Animation for dropdown */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Mobile responsiveness */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: white;
                border-radius: 10px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                padding: 20px;
                margin-top: 15px;
            }
            
            .nav-link {
                margin: 5px 0;
                padding: 10px 15px !important;
            }
            
            .nav-link.active:after {
                display: none;
            }
            
            .nav-link.active {
                background-color: rgba(139, 69, 19, 0.1);
            }
            
            .dropdown-menu {
                box-shadow: none;
                border: 1px solid rgba(0, 0, 0, 0.05);
                margin: 10px 0;
                animation: none;
            }
            
            .cta-button {
                margin: 15px 0 0 0;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
           .navbar{
            min-height: 10vh;
           }
        }
        
        /* Demo content to show navbar in context */
        .demo-section {
            height: 100vh;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }
       
        .demo-section h1 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .demo-section p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px;
         }


       



    @media (max-width: 576px) {
        #home .hero-content{
           margin-bottom: 100px;
        }
        #about{
            padding-top: 20px;
            padding-bottom: 0px;
        }
        #services, #gallery{
            padding-bottom: 0px;
        }
        #products{
            padding-top: 20px;
            padding-bottom: 0px;
        }
        #testimonials, .about-cta, .faq-section, .why-contact, .about-intro, .who-we-are, .what-we-make, .vision-values, .why-trust,
        .delivery-locations, .final-message{
            padding-top: 40px;
            padding-bottom: 30px;
        }
        .process-section{
            padding: 20px 10px 20px !important;
        }
        .services-cta{
            padding: 20px !important;
        }
        .gallery-grid-section{
            padding-bottom: 20px;
        }
        #why-choose-us{
            padding-top: 30px;
        }
        #why-choose-us .section-title{
            margin-bottom: 20px;
        }
        footer{
            padding-top: 20px;
            padding-bottom: 10px;
        }
        footer .copyright{
            margin-top: 0px;
        }
        footer .col-lg-2, .col-lg-4{
            margin-bottom: 0px !important;
        }
        .process-step, .product-category-card, .value-card, .trust-point, .delivery-locations{
            padding: 30px 35px;
        }
        .message-card{
            padding: 10px 0px 0px 0px;
        }
        .service-content{
            padding: 10px 10px 30px;
        }
        .service-content .service-icon-large{
            margin-bottom: 10px;
        }
        #fiber-stages{
            margin-bottom: -100px;
        }
        .process-section h2{
            margin-bottom: 30px;
        }
        #specialized-services{
            padding-bottom: 10px;
        }
        #specialized-services .service-item{
            height: 84vh;
        }
        .gallery-filter{
            padding: 25px 20px;
        }
        .gallery-grid-section{
            padding: 25px 0px 10px;
        }
        #services{
            padding-top: 20px;
        }
        #services .service-card{
            height: 50vh;
        } 
    }


