@font-face {
  font-family: 'NouvelleVague';
  src: url('../fonts/nouvelle_vague_final.ttf') format('truetype');
  /* font-weight: 900; */
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat.ttf') format('truetype');
 
  font-style: normal;
}

        body { font-family: 'Inter', sans-serif; color: #333; }
        
        /* Navigation */
        .navbar-brand { font-weight: 700; color: #0056b3 !important; font-size: 20px; margin:0px; padding:0px; }
        .nav-link { font-size: 0.85rem; font-weight: 500; text-transform: uppercase; margin: 0 10px;color: #141313; }
        #mainNavbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
h1{
    font-family: 'NouvelleVague', sans-serif;
    
    letter-spacing: 2px;
}
h2{
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
}

#mainNavbar.scrolled {
  background-color: #ffe5cd !important; /* new color */

}


.hero-container {
    background-color: #f7941d;
    height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Left Orange Shape */
.hero-container .orange-rect-left {
    position: absolute;
    top: 0;
    left: 115px;
    width: 250px;
    height: 450px;
    background-color: #e4010c;
    z-index: 1;
}

.hero-container .content-column {
    position: relative;
    z-index: 2;
    padding-left: 15px;
}

.hero-container .hero-title {
    color: #ffe3e3;
    letter-spacing: 1.5px;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-container .hero-subtitle {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    /* margin-bottom: 80px; */
}

/* Custom Rounded Buttons */
.hero-container .hero-btns{
    box-sizing: border-box;
    padding-top: 150px;
}
.hero-container .custom-btn {
    background-color: #f4cf98;
    
    
    color: #000000;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 10px; /* High radius for the "squircle" look */
    border: none;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.hero-container .custom-btn:hover {
    background-color: #f6e88f;
    transform: translateY(-2px);
}

/* Right Side Image Layout */
.hero-container .image-stack {
    position: relative;
    width: 300px;
    height: 400px;
    margin-left: auto;
    right:30px;
    top:-40px;
    
}

.hero-container .orange-rect-right {
    position: absolute;
    top:30px;
    right: -30px;
    width: 250px;
    height: 390px;
    background-color: #e4010c;
    
}

.hero-container.hero-image-box {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
}

.hero-container .hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1); /* Matches the B&W look */
}

/* The Triangle Grid Overlay */
/* .hero-container .triangle-pattern {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100px;
    height: 150px;
   
    background-image: linear-gradient(50deg, rgba(255, 255, 255, 0.633) 25%, transparent 20%);
    background-size: 15px px;
    opacity: 0.5;
} */

/* Mobile Adjustments */
@media (max-width: 991px) {
    .hero-container .hero-container { height: auto; padding: 60px 0; }
    .hero-container .hero-title { font-size: 2.2rem; }
    .hero-container .orange-rect-left { display: none; }
}





/* produt and service */

.product-services {
            padding: 50px 0;
            background-color: #FFF8EF;
        }

        /* Section Heading with Lines */
        .product-services .section-title {
            display: flex;
            align-items: center;
            text-align: center;
            font-weight: 700;
            color: #000000;
            margin-bottom: 50px;
        }

        .product-services .section-title::before,
        .product-services .section-title::after {
            content: '';
            flex: 1;
            border-bottom: 2px solid #000000;
        }

        .product-services .section-title:not(:empty)::before {
            margin-right: 20px;
        }

        .product-services .section-title:not(:empty)::after {
            margin-left: 20px;
        }

        /* Service Cards */
        .product-services .service-card {
            text-align: center;
           
            
        }
        

        .product-services .icon-box {
            width: 100px;
            height: 100px;
            background-color: #f7941d;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(246, 167, 41, 0.66);
            border-radius: 4px; /* Slightly rounded corners like image */
             transition: transform 0.4s ease;
        }
        .product-services .icon-box:hover{
            transform: translateY(-10px);
            background-color: #f9992b;
        }

        .product-services .icon-box i {
            font-size: 3rem;
            color: #e4010c;
        }

        .product-services .service-card h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .product-services .service-card p {
            font-size: 0.8rem;
            color: #666;
        }





        /* why choose us  */


        .why-choose-us {
            padding: 80px 0;
        }

        /* Section Title with Lines */
        .why-choose-us .section-title {
            display: flex;
            align-items: center;
            text-align: center;
            font-weight: 700;
            color: #e4010c;
            margin-bottom: 50px;
        }

        .why-choose-us .section-title::before, .section-title::after {
            content: '';
            flex: 1;
            border-bottom: 2px solid #000000;
        }

        .why-choose-us .section-title:not(:empty)::before { margin-right: 20px; }
        .why-choose-us .section-title:not(:empty)::after { margin-left: 20px; }

        /* Feature Rows */
        .why-choose-us .feature-item {
            margin-bottom: 40px;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .why-choose-us .circle-icon {
            width: 70px;
            height: 70px;
            background-color:#f3ba7a;
            border-radius: 50%;
            margin-right: 20px;
            flex-shrink: 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.375);
            transition: 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            
        }
        .why-choose-us .circle-icon i {
            color: #e4010c;
            font-size: 28px;
        }


        .why-choose-us .circle-icon:hover{
            transform: translateY(-10px);
        }

        .why-choose-us .feature-text h4 {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .why-choose-us .feature-text p {
            color: #141313;
            margin-bottom: 0;
        }

        /* Overlapping Image Styles */
        .why-choose-us .image-container {
            position: relative;
            /* padding-right: 20px; */
            padding-top: 20px;
        }

        

        /* The Cropped Image */
        .why-choose-us .main-img-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 400px; /* Adjust height as needed */
            
            border-radius: 100px 40px 40px 250px; /* Custom shape matching image */
            margin-top: 40px;
            align-items: end;
            
        }

        .why-choose-us .main-img-wrapper img {
            width: 100%;
            height: 100%;
            
            object-fit: cover;
            
        }

        @media (max-width: 768px) {
            .why-choose-us .image-container { margin-top: 50px; }
            .why-choose-us .section-title { font-size: 1.5rem; }
        }




        /* achievement */

        .achievements-section {
            padding: 60px 0 0 0 ;
        }

        /* Section Heading with Lines */
        .achievements-section  .section-title-container {
            display: flex;
            align-items: center;
            text-align: center;
            font-weight: 700;
            color: #e4010c;
            margin-bottom: 50px
        }

        .achievements-section  .section-title-container::before,
        .achievements-section  .section-title-container::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #000000;
        }

        .achievements-section  .section-title {
            padding: 0 20px;
            font-weight: 800;
            
            color: #e4010c;
            margin: 0;
        }

        /* Counter Box Styles */
        .achievements-section  .stats-container {
            background-color: #FFF8EF;
            padding: 80px 0;
        }

        .achievements-section  .stat-item {
            text-align: center;
            position: relative;
        }

        /* Vertical Dividers */
        .achievements-section  .stat-item:not(:last-child)::after {
            content: "";
            position: absolute;
            right: 0;
            top: 10%;
            height: 80%;
            width: 1px;
            background-color: #d1cbc4;
        }

        .achievements-section  .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: #e4010c;
            margin-bottom: 10px;
            line-height: 1;
        }

        .achievements-section  .stat-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: #444;
        }

        /* Mobile Adjustments */
        @media (max-width: 767px) {
            .achievements-section  .stat-item {
                margin-bottom: 40px;
            }
            .achievements-section  .stat-item:not(:last-child)::after {
                display: none;
            }
        }




        /* contact section  */

        .contact-section {
            
            overflow: hidden;
        }

        .contact-section .contact-title {
            font-weight: 800;
            margin-bottom: 30px;
            color: #e60a27;
            font-size: 2rem;   /* ADD THIS */
        }

        /* Left Side: Contact Info Items */
        .contact-section .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 28px;  /* was 20px */
            gap: 24px;
        }

        .contact-section .icon-square {
            width: 65px;          /* was 50px */
            height: 65px;         /* was 50px */
            background-color: #F7931D;
            border-radius: 10px;  /* slightly smoother */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 24px;
            color: white;
            font-size: 1.5rem;    /* was 1.2rem */
            transition: transform 0.4s ease;
        }
        .contact-section .icon-square:hover{
            transform: translateY(-10px);
            background-color: #fca139;
        }

        .contact-section .contact-text {
            font-size: 1.15rem;   /* was 1rem */
            color: #000000;
            text-decoration: none;
        }

        .contact-section .contact-text:hover {
            color:#F7931D ;
        }

        /* Right Side: Decorative Hanging Icons */
        .contact-section .hanging-icons-container {
            position: relative;
         
            height:650px;
            
            top:-28px;
            left: 40px;
           
        }
        .contact-section .hanging-icons-container img{
            height:auto;
            
        }
   

        @media (max-width: 991px) {
            .contact-section .hanging-icons-container {
                justify-content: center;
                margin-top: 50px;
            }
        }
        .notation{
            
            height:250px;
            background-color: #e4010c;
            justify-content: center;
            display: flex;
            align-items: center;
            
        }
        .notation h2{
            color: #ffffff;
            font-weight:bolder;
            font-size: 2.5rem !important;
        }
       
        /* Footer */
        footer { background-color: #FFF8EF; padding: 60px 0 20px 0; border-top: 1px solid #eee; }
        .footer-logo { color: #0056b3; font-weight: 700; font-size: 1.5rem; }
        .footer-heading { font-weight: 700; font-size: 1rem; margin-bottom: 20px; color: #e4010c; }
        .footer-links { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 10px; font-size: 0.9rem; color: #666; }
        .copyright { border-top: 1px solid #ddd; padding-top: 20px; font-size: 0.8rem; color: #999; text-align: center; margin-top: 40px; }