/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
header {
    /* background: #fefefe; */
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
}

/* Logo */
.logo img {
    width: 130px;
}

/* Menu Button */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgb(0, 0, 0);
}

/* Navigation Links */
/* .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}


.nav-links a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
} */

/* Mobile View */
/* @media (max-width: 768px) {
    .navbar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        width: 200px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        padding: 15px;
        text-align: center;
    }
} */

/* Hero Section */
.hero {
    background: url('img_6451.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    position: relative;
}


.hero-text {
    /* background: rgb(255, 255, 255); */
    /* box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset; */
    
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffffff;
    background-color: #0000009f;
    /* text-shadow : -1px -1px 1px #fff, 1px 1px 1px #000000 ; color : #4a4a4a; opacity : 1; */
}
.hero-text a {
    display: inline-block;
    padding: 10px 20px;
    background: #850408;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
    
}
/* .animate-charcter {
    text-transform: uppercase;
    background-image: linear-gradient(
       -225deg,
       #ffffff 0%,
       #000000 29%,
       #390f1d 67%,
       #ffffff 100%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
    font-size: 190px;
 }
 
 @keyframes textclip {
    to {
       background-position: 200% center;
    }
 }
 .sec2,
 .sec1 {
   width: 100%;
   height: 100%;
   background-color: white;
   color: black;
   text-align: center;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: poppins;
 }
 .sec2 > div {
   animation: revealing;
   animation-timeline: view(block);
   animation-range: cover 0% cover 50%;
   margin: 0px;
 }
 @keyframes revealing {
   from {
     color: gray;
     margin-left: 100vw;
     filter: blur(50px);
     opacity: 0.5;
   }
   to {
     margin: 0px;
     filter: blur(0px);
     opacity: 1;
   }
 } */

 /* ......................... */
 /* Animated Gradient Text */
/* Animated Gradient Text */
.animate-charcter {
    text-transform: uppercase;
    font-size: 190px;
    font-weight: bold;
    display: inline-block;
    background-image: linear-gradient(
        90deg,
        #ff4e50 0%,   /* Vibrant Red */
        #fc913a 25%,  /* Warm Orange */
        #f9d423 50%,  /* Golden Yellow */
        #30cfd0 75%,  /* Cool Cyan */
        #330867 100%  /* Deep Purple */
    );
    background-size: 300% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glowingText 4s ease-in-out infinite alternate;
}

/* Smooth Gradient Shift */
@keyframes glowingText {
    0% { background-position: 0% center; }
    100% { background-position: 100% center; }
}

/* Sections */
.sec1, .sec2 {
    width: 100%;
    min-height: 100vh;
    background-color: #111; /* Dark Background */
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

/* FIXED: Smooth Fade-in Without Any Movement */
.sec2 > div {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

/* Final Fade-in Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .animate-charcter { font-size: 100px; }
}

@media screen and (max-width: 480px) {
    .animate-charcter { font-size: 60px; }
}


 /* ...................  */
 

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #cc5500;
}
/* About  */
.about-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    max-width: 50%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-text {
    flex: 1;
    max-width: 50%;
    padding: 20px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
     color: #222;
    font-weight: bold;
}

.about-text p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #cc5500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image, .about-text {
        max-width: 100%;
    }

    .about-text {
        padding: 20px 0;
    }
}

/* Services */
.services {
    padding: 60px 0;
    text-align: center;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-align: center;
}

/* Services Section */
#services {
    background: #9c2d2d; /* Dark Red Theme */
    color: #fff;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.services-container {
    display: flex;
    max-width: 1100px;
    gap: 50px;
    align-items: center;
}

/* Left Side: Summary */
.services-summary {
    flex: 1;
    max-width: 400px;
}

.services-summary h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #222;
    font-weight: bold;
    /* color: #60cce4; Highlight color */
}

.services-summary p {
    font-size: 1.1rem;
    line-height: 1.6;
    /* color: #222; */
}

.services-summary ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.services-summary li {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.services-summary li i {
    color: #ffcc00;
    margin-right: 8px;
}

/* Right Side: Service Cards */
.services-grid {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-box i {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

.service-box h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.service-box p {
    font-size: 1rem;
    color: #ddd;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-container {
        flex-direction: column;
        text-align: center;
    }
    
    .services-summary {
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }
}


/* Section Styling */
#why-choose-us {
    padding: 60px 10%;
    background: #f9f9f9;
}

/* Container Layout */
.container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left Side: Summary */
.summary {
    flex: 1;
    max-width: 40%;
}

.summary h2 {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.summary p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* Right Side: Timeline */
.timeline {
    flex: 1;
    max-width: 55%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #d32f2f;
}

/* Individual Timeline Item */
.timeline-item {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}

.icon {
    width: 60px;
    height: 60px;
    background: #d32f2f;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    position: absolute;
    left: 0;
}

.content {
    margin-left: 80px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
}

.content p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}
/* Responsive Styles */
@media (max-width: 1024px) {
    .summary, .timeline {
        max-width: 100%;
    }
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .icon {
        position: relative;
        left: auto;
        margin-bottom: 10px;
    }
    .content {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    #why-choose-us {
        padding: 40px 5%;
    }
    .summary h2 {
        font-size: 28px;
    }
    .summary p {
        font-size: 14px;
    }
    .icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }
    .content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .summary h2 {
        font-size: 24px;
    }
    .summary p {
        font-size: 13px;
    }
    .icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }
    .content {
        padding: 10px;
    }
}


#metrics {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

#metrics h2 {
    font-size: 32px;
    /* font-weight: bold; */
    margin-bottom: 30px;
    color: #222;
    font-weight: bold;
    /* color: #6d0f0f; */
}

.metrics-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    border-top: 2px solid #d3d3d3;
    border-bottom: 2px solid #d3d3d3;
    padding: 20px 0;
}

.metric {
    text-align: center;
    padding: 20px;
    border-right: 2px solid #d3d3d3;
}

.metric:last-child,
.metric:nth-child(3) {
    border-right: none;
}

.separator {
    grid-column: span 3;
    border-top: 2px solid #d3d3d3;
    margin: 10px 0;
}

.metric img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.metric h3 {
    font-size: 22px;
    font-weight: bold;
    color: #0f476d;
}

.metric p {
    font-size: 16px;
    color: #555;
}

.matric i {
    font-size: 40px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .metrics-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .separator {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .metrics-container {
        grid-template-columns: 1fr;
    }
    .separator {
        grid-column: span 1;
    }
}

.testimonials {
    padding: 50px;
    background: white;
}

.testimonials h2 {
    text-align: center;
}
.testimonial-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    border: 2px solid #a21c1c;
    border-radius: 10px;
    padding: 20px;
}
.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-logo {
    min-width: 200px;
    margin: 0 15px;
}
.testimonial-logo img {
    width: 100px;
    height: auto;
}
.prev, .next {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(162, 28, 28, 0.8);
    color: white;
    padding: 10px;
    border-radius: 50%;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
/* Products */
/* Product Section */
#products {
    padding: 60px 8%;
    background: #f9f9f9;
    text-align: center;
}

.product-intro {
    max-width: 600px;
    margin: 0 auto 40px;
}

.product-intro h2 {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.product-intro p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

/* Individual Product */
.product {
    position: relative;
    text-align: center;
}

.product-content {
    background: white;
    padding: 20px;
    
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.product-content img {
    width: 100%;
    height: 245px;
    max-width: 300px;
    
    transition: 0.3s;
}

.product h3 {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-top: 10px;
}

.product:hover .product-content {
    transform: scale(1.05);
}

/* Divider */
.divider {
    width: 100px;
    height: 3px;
    background: #d32f2f;
    margin: 15px auto;
}

/* View Products Button */
.view-products {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: #d32f2f;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
    transition: all 0.3s;
}

.btn:hover {
    background: #b71c1c;
    box-shadow: 0 6px 15px rgba(211, 47, 47, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 column on mobile */
    }
    
    .product-content {
        padding: 15px;
    }

    .product-content img {
        max-width: 245px;
    }

    .btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .product-intro h2 {
        font-size: 26px;
    }

    .product-intro p {
        font-size: 14px;
    }

    .product-content img {
        max-width: 245px;
    }

    .btn {
        font-size: 14px;
        padding: 8px 18px;
    }
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.modal input,
.modal textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal button {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #222;
    text-align: center;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 40px 10%;
    align-items: center;
}


.footer-content {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.footer-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.contact p{
    text-align: center;
}
.footer-content p, .footer-content ul {
    font-size: 14px;
    color: #ddd;
}

.footer-content ul {
    list-style: none;
    padding: 0;
}

.footer-content ul li {
    margin: 5px 0;
}

.footer-content ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-content ul li a:hover {
    color: #ff4500;
}

.map iframe {
    border-radius: 10px;
}
.icons{
    display: flex;
}
.social-icons a {
    display: inline-block;
    margin: 5px;
    font-size: 20px;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff4500;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}
section.testimonials{
    background-color: #ECF2F7;
    
    margin: 0;
    padding: 0;
    right: 0;
    left: 0;
}
section.heading{
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    margin: 5rem 3rem 3rem 3rem;
    font-size: 3rem;
    font-weight: 700;
}
section.contain{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    width: 95%;
    gap: 1.5rem;
    max-width: 1280px;
    margin: auto;
    grid-template-areas:
    "item1 item1 item2 item3"
    "item4 item5 item5 item3";
}

.item{
    padding: 1.5rem;
    display: grid;
    grid-template-areas:
    "img name"
    "title title"
    "description description";
    grid-template-columns: 50px 1fr;
    row-gap: 1.5rem;
    align-content: start;
}


.testimonials img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    grid-area: img;
    margin-bottom: 1rem;
}

.name{
    font-size: 1.6rem;
    font-weight: 600;
    grid-area: name;
    display: grid;
    align-content: center;
    padding-left: 1rem;
    margin-bottom: 1rem;
}
.title{
    font-weight: 600;
    font-size: 1.8rem;
    grid-area: title;
    margin-bottom: 1rem;
}
.description{
    font-size: 1rem;
    word-spacing: 0.5rem;
    grid-area: description;
    margin-bottom: 1rem;
}
.description::after{
    content: '"';
}
.description::before{
    content: '"';
}
.item1{
    background-color: #752204;
    background-size: 50px;
    background-repeat: no-repeat;
    color: #ffffff;
    grid-area: item1;
}
.item2{
    background-color: #752204;
    color: #ffffff;
    grid-area: item2;
}
.item3{
    background-color: #FEFEFE;
    color: #000000;
    grid-area: item3;
}
.item4{
    background-color: #FEFEFE;
    color: #000000;
    grid-area: item4;
}
.item5{
    background-color: #030539;
    color: white;
    grid-area: item5;
}
.footer_container{
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}


@media (max-width: 991px){
    section.contain{
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-template-areas: 
        "item1 item1 item2"
        "item4 item5 item5"
        "item3 item3 item3";
        gap: 1.5rem;
    }
}
@media (max-width: 768px){
    section.contain{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 1fr);
        grid-template-areas: 
        "item1"
        "item2"
        "item3"
        "item4"
        "item5";
        gap: 1.5rem;
    }
}
.map-container {
    position: relative;
    width: 90%;
    max-width: 700px;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .map-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 200px;
        
    }
    .footer_container{
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding: 10px;
    }
}
/* Floating Button Styles */
.floating-button {
    position: fixed;
    bottom: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    cursor: pointer;
}

/* Hover Effect */
.floating-button:hover {
    transform: scale(1.1);
}

/* Call Button */
.call-button {
    right: 20px;
    background-color: #28a745;
}

/* Email Button */
.email-button {
    right: 20px;
    bottom: 90px; /* Position above the call button */
    background-color: #007bff;
}

/* WhatsApp Button */
.whatsapp-button {
    right: 20px;
    bottom: 160px; /* Position above email button */
    background-color: #25D366;
}

/* Hover Effects */
.call-button:hover { background-color: #218838; }
.email-button:hover { background-color: #0056b3; }
.whatsapp-button:hover { background-color: #1DA851; }

/* 📌 Responsive Adjustments */
@media screen and (max-width: 768px) {
    .floating-button {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 20px;
    }

    /* Adjust Spacing */
    .email-button { bottom: 80px; }
    .whatsapp-button { bottom: 140px; }
}

@media screen and (max-width: 480px) {
    .floating-button {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }

    /* Adjust Spacing for Small Screens */
    .email-button { bottom: 70px; }
    .whatsapp-button { bottom: 120px; }
}
