#hero .carousel-item {
    position: relative;
}

body{
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* navbar */


/* Navbar Styling */
.navbar {
background: transparent; /* Default transparent */
transition: background 0.4s ease-in-out;
}

.nav-link{
color: #ffffff !important;
}


.navbar.scrolled {
    background-color: #222 !important; /* Apne color ke hisab se change karein */
    transition: background-color 0.3s;
}

/* Social Icons */
.social-icons {
position: absolute;
top: 20px;
right: 40px;
display: flex;
gap: 15px;
z-index: 10;
}

.social-link {
display: inline-block;
width: 50px;
height: 50px;
position: relative;
}

.icon-bg {
width: 100%;
height: 100%;
background: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s ease;
}

.social-link img {
width: 30px;
height: 30px;
}

/* Hover Effect */
.social-link:hover .icon-bg {
transform: scaleX(1.2) translateX(5px);
}


/* Carousel Styling */
.carousel {
 position: relative;
}

.carousel-item img {
 height: 100vh;
 width: 100%;
 object-fit: cover;
}

/* Dropdown Styling */
.dropdown-menu {
    background-color: whitesmoke;
    border-radius: 5px;
    border: 1px solid black;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Dropdown Items */
.dropdown-item {
    color: black !important;
    font-weight: 500;
}

/* Dropdown Icons */
.dropdown-item i {
    margin-right: 8px;
}

/* Hover Effect */
.dropdown-item:hover {
    background-color: black !important;
    color: #ffffff !important;
}

/* Chevron Dropdown Icon */
.navbar-nav .nav-item .dropdown-toggle i {
    font-size: 14px;
    margin-left: 5px;
}



/* Mobile Mode: Reduce Carousel Height */
@media (max-width: 768px) {
 .carousel-item img {
     height: 60vh; 
     width: 60vh;
 }
}

/* Fixed Text */
.carousel-text {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 text-align: center;
 color: white;
 font-family: 'Poppins', sans-serif;
 transition: top 0.3s ease-in-out;
}

.small-text {
 font-size: 1rem;
 font-family: Georgia, 'Times New Roman', Times, serif;
 letter-spacing: 1px;
 background: rgba(0, 0, 0, 0.7);
 padding: 5px 15px;
}

.big-text {
 font-size: 2rem;
 font-weight: bold;
 background: rgba(0, 0, 0, 0.7);
 padding: 10px 20px;
}


/* Pagination Dots */
.carousel-indicators button {
 width: 10px;
 height: 10px;
 border-radius: 50%;
 background-color: white;
}

/* Social Media Icons */
.social-icons {
 position: absolute;
 top: 20px;
 right: 40px;
 display: flex;
 gap: 0px;
 z-index: 10; /* Sabke upar dikhne ke liye */
}

.social-link {
 display: inline-block;
 width: 50px;
 height: 50px;
 position: relative;
}

.icon-bg {
 width: 100%;
 height: 100%;
 background: white;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: transform 0.3s ease;
}

.social-link img {
 width: 30px;
 height: 30px;
 filter: none; /* Original color maintain */
}

/* Hover Effect: Background Zoom Right */
.social-link:hover .icon-bg {
 transform: scaleX(1.2) translateX(5px);
}



/* Mobile Mode - Social Icons Bottom Par */
@media (max-width: 768px) {
 .social-icons {
     top: auto;
     bottom: 20px;
     right: 50%;
     transform: translateX(50%);
     gap: 10px;
 }

 .social-link {
     width: 40px;
     height: 40px;
 }

 .social-link img {
     width: 20px;
     height: 20px;
 }
}


     /* Mobile Mode - Shift Text to Bottom */
     @media (max-width: 768px) {
 .carousel-text {
     top: 80%; /* Mobile par text neeche shift */
     transform: translate(-50%, -20%);
 }
}


@media (max-width: 768px) {
.small-text {
font-size: 0.8rem;  /* Chota size for mobile */
padding: 1px;
}

.big-text {
font-size: 1.0rem;  /* Big text bhi chota hoga */
padding: 0px;
margin-bottom: 200px;
}
}

/* Default Hide in Mobile */
@media (max-width: 991px) {
.social-icons {
display: none;
position: absolute;
top: 60px;
right: 20px;
background: transparent;
padding: 10px;
border-radius: 10px;
}

.social-icons.show-icons {
display: flex;
flex-direction: column;
gap: 10px;
margin-right: 19px;
}

.social-icons a .icon-bg {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: white;
transition: transform 0.3s ease-in-out;
}

.social-icons a:hover .icon-bg {
transform: scale(1.2) translateX(10px);
}
}









/* about */


#about-img {
    
    border-radius: 10px; /* Slightly rounded corners */
    box-shadow: 0px 4px 10px rgba(235, 14, 14, 0.1); /* Soft shadow for depth */
}


.about-title {
    font-size: 2rem;
    color: whitesmoke; /* Ensure the title has white smoke color */
    text-align: left;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif; /* Clean, modern font */
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8; /* Improve readability */
    color: whitesmoke; /* Light text color */
    text-align: justify; /* Justify text to align on both sides */
    margin-bottom: 20px;
    font-family: 'Helvetica', sans-serif; /* Elegant font */
}

.about-text i {
    font-style: italic; /* Styling for the italicized portion of text */
}

.about-img {
    width: 100%; /* Ensure image takes full width */
    height: auto;
    border-radius: 8px; /* Slight rounding of image corners */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Shadow to give depth */
    transition: transform 0.3s ease-in-out; /* Smooth transition for hover effect */
}

.about-img:hover {
    transform: scale(1.05); /* Slight zoom-in effect on hover */
}

/* Read More Button Styling */
.read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: whitesmoke; /* Text color inside the button */
    text-align: center;
    background-color: #b83d39; /* Dark red background */
    border: 2px solid #fff;
    border-radius: 8px;
    margin-top: 20px;
    text-decoration: none; /* Remove underline from the link */
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover effect */
}

/* Hover Animation for Button */
.read-more-btn:hover {
    background-color: #9d3e34; /* Lighter red background on hover */
    color: white; /* Text color changes to white on hover */
    transform: scale(1.1); /* Slight zoom-in effect */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Add shadow for hover effect */
}



/* Styling for the Services Section */
#services {
    background-color: #f8f9fa;
    padding-top: 60px;
    padding-bottom: 60px;
}

.underline {
    display: inline-block;
    position: relative;
}
.underline:after {
    content: '';
    position: absolute;
    width: 50%;
    left: 25%;
    bottom: -4px;
    height: 2px;
    background-color: black;
    
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
}
.hea{
    color:#000000;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 3rem;
    font-weight: 700;
}
.para{
    font-family: Georgia, 'Times New Roman', Times, serif;
    /* line-height: 1.2px; */
    letter-spacing: 1px;
    font-weight: 400;
}
/* Card Styling */
.service-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px;
    overflow: hidden;
    
    height: 100%; /* Cards ki height fix karne ke liye */
    display: flex;
    flex-direction: column;
}

.cards{
    margin-bottom: 30px;
}

/* Image Container Styling */
.card-img-container {
    width: 100%;
    height: 250px; /* Fix image height */
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images fit nicely */
    transition: transform 0.3s ease;
}

/* Card Body Styling */
.service-card .card-body {
    flex-grow: 1; /* Body ko flexible banane ke liye */
    padding: 20px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Content ko evenly space dene ke liye */
}

/* Card Title Styling */
.service-card .card-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Card Text Styling */
.service-card .card-text {
    font-size: 1rem;
    color: #555;
}

/* Hover Effect for Service Cards */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover img {
    transform: scale(1.1);
}

/* Equal height for all cards */
.row .col-md-4 {
    display: flex;
}

.service-card {
    flex: 1; /* Cards ko equal size dene ke liye */
}




/*  */

.gallery-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    background-color: #fff;
    padding: 10px;
    
}
.gallery-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    cursor: pointer;
}
.modal-body {
    position: relative;
    text-align: center;
}
.modal-img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: rgb(255, 28, 28);
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    cursor: pointer;
    color: rgb(52, 51, 51);
    padding: 10px;
}
.prev { left: 10px; }
.next { right: 10px; }


/*  */

/* Video Gallery Section */
#video-gallery {
    background-color: #f4f4f4;
    padding-top: 60px;
    padding-bottom: 60px;
}



/* Ensure video cards have the same size with equal padding, bottom margin, and hover effect */
.video-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 15px 20px; /* Same padding on left and right */
    margin-bottom: 30px; /* Adds margin to the bottom of each video card for spacing */
    border: 1px solid #ddd;
    box-sizing: border-box;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px; /* Rounded corners for the card */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
}

/* Hover effect for the video card */
.video-card:hover {
    transform: translateY(-5px); /* Slightly lift the card */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}

/* Fixed size for videos */
.video-iframe {
    width: 100%;
    height: 200px; /* You can adjust the height as per your need */
    border-radius: 8px;
}

/* Optional: Ensure the video heading style is consistent */
.video-heading-top {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}



/* Mobile-specific styles */
@media (max-width: 767px) {
    /* Center the video cards in mobile view */
    .video-card {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px; /* Smaller bottom margin for mobile */
        width: 90%; /* Make the video cards slightly smaller on mobile */
    }

    /* Ensure the row layout is stacked vertically */
    .row {
        /* display: flex; */
        /* flex-direction: column; */
        align-items: center;
    }
    .rows{
      width: 50% !important;
    }

    /* Optional: Adjust the video size in mobile view */
    .video-iframe {
        height: 180px; /* Slightly smaller video height for mobile */
    }

    /* Optional: Adjust heading size for mobile */
    .video-heading-top {
        font-size: 16px;
        margin-bottom: 10px;
    }

    /* Adjust the 'Read More' button for mobile */
    .read-more-btn {
        font-size: 14px;
        padding: 8px 16px;
        margin: 23px;
    }
}



/* Footer */

.custom-footer {
    background-color: #111;
    position: relative;
    color: white;
    padding: 40px 20px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    position: relative;
}
.footer-box {
    flex: 1;
    min-width: 250px;
    padding: 15px;
    border-radius: 8px;
    transition: 0.3s;
    text-align: left;
}
.footer-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.footer-box h3 i {
    margin-right: 10px;
    color: #f39c12;
}
.footer-box ul {
    list-style: none;
    padding: 0;
}
.footer-box ul li a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    padding: 5px 0;
    transition: 0.3s;
}
.footer-box ul li a i {
    margin-right: 10px;
    color: #f39c12;
}
.footer-box ul li a:hover {
    color: #f39c12;
    padding-left: 5px;
}
.social-icons a {
    color: white;
    font-size: 20px;
    margin: 10px;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #f39c12;
    transform: scale(1.2);
}
.footer-logo {
    flex: 1;
    min-width: 300px;
    text-align: left;
}
.footer-logo img {
    width: 150px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.gallery img {
    width: 100%;
    border-radius: 8px;
}
.contact-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-info div {
    flex: 1;
    text-align: center;
    padding: 10px;
}
.copyright {
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    margin-top: 20px;
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-logo {
        text-align: center;
    }
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-info {
        flex-direction: column;
    }
}



/*  */



/* footer css  */
.footer-menu li {
    line-height: 2rem;
  }
  .footer-menu li:hover{
    color: rgb(192, 239, 247);
  }
  
  .footer-hr {
    border-bottom: 1px solid white;
  }
  
  .flick img {
    height: 5rem;
    width: 5rem;
  }
  
  .cards img {
    transition: transform 0.2s ease;
  }
  
  .cards:hover img {
    transform: scale(1.2);
    cursor: pointer;
  }
  
  /* button css  */
  .my-btn {
    position: relative;
    font-size: 1.2em;
    padding: 0.5em 1.2em;
    background-color: #BF0426;
    text-decoration: none;
    border: none;
    border-radius: 0.5em;
    color: #DEDEDE;
    box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.3);
  }
  
  
  .my-btn::before {
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(33, 33, 33, 1) 0%, rgba(33, 33, 33, 1) 50%, rgba(150, 4, 31, 1) 50%, rgba(191, 4, 38, 1) 60%);
    border-radius: 0 0 0.5em 0;
    box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
    transition: 0.3s;
  }
  
  .my-btn:hover::before {
    width: 1.4em;
    height: 1.6em;
  }
  
  .my-btn:active {
    box-shadow: 0.2em 0.2em 0.3em rgba(0, 0, 0, 0.3);
    transform: translate(0.1em, 0.1em);
  }
  
  
  .about2 {
    background-image: url('./images/bg.jpg');
    background-size: cover;
    height: 35vh;
    width: 100%;
    position: relative;
  }
  
  .bgg {
    background-color: rgb(86, 85, 85, 0.4);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .about2 h3 {
    font-size: 1.5rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  
  .about2 h4 {
    font-size: 3rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  
  
  
  /* services cards  */
  .serv-cards {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* max-width: 300px; */
    /* height: 400px; */
    overflow: hidden;
    transition: transform 0.3s;
  }
  
  .serv-cards:hover {
    transform: scale(1.02);
  }
  
  .serv-cards-image {
    width: 100%;
    height: auto;
  }
  
  .serv-cards-content {
    padding: 15px;
  }
  
  .serv-cards-title {
    font-size: 1.3em;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 10px;
    color: #000000;
  }
  
  .serv-cards-text {
    font-size: 1em;
    color: #666;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  
  
  
  .gallery {
    height: 300px;
    /* background-color: #212121; */
  }
  
  .gall {
    background-color: white;
    height: 270px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
  
  }
  
  .gall:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
  }
  
  .gallery1 {
    height: 100%;
    width: auto;
  
  }
  
  .service h5 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    /* line-height: 1.2px; */
    letter-spacing: 1px;
    font-weight: 400;
  }
  
  .service h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 3rem;
    font-weight: 700;
  }
  
  
  
  
  /* form css  */
  .form {
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transition: all 1s ease;
  }
  
  .form .form_front {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: absolute;
    background-color: #212121;
    backface-visibility: hidden;
    padding: 65px 45px;
    border-radius: 15px;
    box-shadow: inset 2px 2px 10px rgba(0, 0, 0, 1),
      inset -1px -1px 5px rgba(255, 255, 255, 0.6);
  }
  
  .form .form_back {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* position: absolute; */
    backface-visibility: hidden;
    transform: rotateY(-180deg);
    padding: 65px 45px;
    border-radius: 15px;
    box-shadow: inset 2px 2px 10px rgba(0, 0, 0, 1),
      inset -1px -1px 5px rgba(255, 255, 255, 0.6);
  }
  
  .form_details {
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 10px;
    color: white;
  }
  
  .input {
    width: 245px;
    min-height: 45px;
    color: #fff;
    outline: none;
    transition: 0.35s;
    padding: 0px 7px;
    background-color: #212121;
    border-radius: 6px;
    border: 2px solid #212121;
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 1),
      1px 1px 10px rgba(255, 255, 255, 0.6);
  }
  
  .input::placeholder {
    color: #999;
  }
  
  .input:focus.input::placeholder {
    transition: 0.3s;
    opacity: 0;
  }
  
  .input:focus {
    transform: scale(1.05);
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 1),
      1px 1px 10px rgba(255, 255, 255, 0.6),
      inset 2px 2px 10px rgba(0, 0, 0, 1),
      inset -1px -1px 5px rgba(255, 255, 255, 0.6);
  }
  
  .btn {
    padding: 10px 35px;
    cursor: pointer;
    background-color: #212121;
    border-radius: 6px;
    border: 2px solid #212121;
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 1),
      1px 1px 10px rgba(255, 255, 255, 0.6);
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    transition: 0.35s;
  }
  
  .btn:hover {
    color: white;
    transform: scale(1.05);
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 1),
      1px 1px 10px rgba(255, 255, 255, 0.6),
      inset 2px 2px 10px rgba(0, 0, 0, 1),
      inset -1px -1px 5px rgba(255, 255, 255, 0.6);
  }
  
  .btn:focus {
    transform: scale(1.05);
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 1),
      1px 1px 10px rgba(255, 255, 255, 0.6),
      inset 2px 2px 10px rgba(0, 0, 0, 1),
      inset -1px -1px 5px rgba(255, 255, 255, 0.6);
  }
  
  .contact {
    background-image: url('../images/contact1.jpeg');
    background-size: cover;
    background-position: center;
    height: 65vh;
    width: 100%;
    transition: all .5s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }
  
  .about {
    background-image: url('../images/about1.jpg');
    background-size: cover;
    background-position: center;
    height: 65vh;
    width: 100%;
    transition: all .5s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }
  
  /* service page css  */
  .services {
    background-image: url('../images/service.jpeg');
    background-size: cover;
    background-position: center;
    height: 65vh;
    width: 100%;
    transition: all .5s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }
  
  /* video css  */
  
  
  .video {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* width: 300px; */
    /* max-width: 100%; */
  }
  
  .video-header {
    /* background-color: #6200ea; */
    color: white;
    padding: 16px;
    text-align: center;
  }
  
  .video-header h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 2rem;
    color: black;
  
    font-weight: 700;
  }
  
  .video-body {
    padding: 16px;
  }
  
  .iframe-content {
    width: 100%;
    height: 350px;
    border: none;
  }
  
  .video-footer {
    padding: 16px;
    text-align: center;
  }
  
  /* .video-button {
    background-color: #6200ea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .video-button:hover {
    background-color: #3700b3;
  } */
  
  
  
  /* text underline css  */
  .text-line {
    display: inline-block;
    position: relative;
    font-size: 24px;
    /* Adjust as per your requirement */
  }
  
  .text-line::after {
    content: '';
    position: absolute;
    bottom: -7px;
    /* Adjust as per your requirement */
    left: 50%;
    transform: translateX(-50%);
    /* Center the line */
    width: 50%;
    height: 2px;
    /* Adjust as per your requirement */
    background: #000;
    /* Line color */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    /* Shadow properties */
  }
  
  
  
  /* footer images open css  */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    position: relative;
  }
  
  .cross {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .cross:hover,
  .cross:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: rgb(91, 90, 90);
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    text-decoration: none;
  }
  
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .prev {
    left: 0;
    border-radius: 3px 0 0 3px;
  }
  
  @media (max-width: 768px) {
    .modal-content {
      width: 100%;
      top: 25%;
      max-width: none;
      /* Removes the maximum width constraint */
    }
  
    .prev,
    .next {
      font-size: 30px;
    }
  }
  
  
  /* images slider css  */
  /* Styles for the gallery images */
  .gallery img {
    cursor: pointer;
    width: auto;
    height: 100%;
    overflow: hidden;
  }
  
  /* Full-screen overlay */
  .fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .fullscreen-overlay img {
    max-width: 90%;
    max-height: 90%;
  }
  
  .fullscreen-overlay .close,
  .fullscreen-overlay .next,
  .fullscreen-overlay .prev {
    position: absolute;
    top: 50%;
    font-size: 50px;
    color: white;
    cursor: pointer;
    transform: translateY(-50%);
    user-select: none;
  }
  
  .fullscreen-overlay .close {
    top: 10px;
    right: 20px;
    transform: none;
  }
  
  .fullscreen-overlay .next {
    right: 20px;
  }
  
  .fullscreen-overlay .prev {
    left: 20px;
  }
  
  /* Hide navbar when full-screen overlay is active */
  body.fullscreen-active .navbar {
    display: none;
  }
  
  /* Adjust button size and position on small screens */
  @media (max-width: 768px) {
  
    .fullscreen-overlay .next,
    .fullscreen-overlay .prev {
        font-size: 30px;
        top: 55%;
        transform: translateY(-50%);
    }
  
    .fullscreen-overlay .next {
        /* right: 50%; */
        transform: translate(50%, -50%);
    }
  
    .fullscreen-overlay .prev {
        /* left: 50%; */
        transform: translate(-50%, -50%);
    }
  }
  
  
  /* About  */
  
  .carddd {
    /* max-width: fit-content; */
    /* border-radius: 15px; */
    /* display: flex; */
    /* flex-direction: column; */
    align-content: center;
    justify-content: center;
    /* gap: 1rem; */
    background-color: transparent;
    /* backdrop-filter: blur(15px); */
    /* box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.192),
        inset 0 0 5px rgba(255, 255, 255, 0.274), 0 5px 5px rgba(0, 0, 0, 0.164); */
    transition: 0.5s;
    height: 3rem;
  }
  
  /* .card:hover {
      animation: ease-out 5s;
      background: rgba(173, 173, 173, 0.05);
    } */
  
  .carddd ul {
    /* padding: 1rem; */
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
  
    /* flex-direction: column; */
  }
  
  .carddd ul li {
    cursor: pointer;
  }
  
  .name {
    transition: all 0.3s;
    /* if you find some problems change w - h : 30px*/
    padding: 1rem;
    height: 65px;
    /* width: 100px; */
    /* border-radius: 100%; */
    /* color: rgb(255, 174, 0); */

    /* color: #a05a04; */
    fill: currentColor;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3),
      inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.164);
  }
  
  
  
  /*isometric prooyection*/
  .isoo-proo {
    transition: 0.5s;
  }
  
  .isoo-proo:hover a>.name {
    transform: translate(15px, -15px);
    /* border-radius: 100%; */
  }
  
  /* .iso-pro:hover .text {
      opacity: 1;
      transform: translate(25px, -2px) skew(-5deg);
    } */
  
  .isoo-proo:hover .name {
    transform: translate(5px, -5px);
  }
  
  .isoo-proo span {
    opacity: 0;
    position: absolute;
    color: #1877f2;
    border-color: #1877f2;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3),
      inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.164);
    /* border-radius: 50%; */
    transition: all 0.3s;
    height: 65px;
    width: 180px;
  }
  
  .isoo-proo:hover span {
    opacity: 1;
  }
  
  .isoo-proo:hover span:nth-child(1) {
    opacity: 0.2;
  }
  
  .isoo-proo:hover span:nth-child(2) {
    opacity: 0.4;
    transform: translate(5px, -5px);
  }
  
  .isoo-proo:hover span:nth-child(3) {
    opacity: 0.6;
    transform: translate(10px, -10px);
  }




  /*  */


  

/* icons css */


  
  .card ul {
    /* padding: 1rem; */
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    background-color: #000000;
  
    /* flex-direction: column; */
  }
  
  .card ul li {
    cursor: pointer;
    background: #000000;
  }
  
  .svg {
    transition: all 0.3s;
    /* if you find some problems change w - h : 30px*/
    padding: 1rem;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    /* color: rgb(255, 174, 0); */
    color: #38afd1;
    /* color: #a05a04; */
    fill: currentColor;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3),
      inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.164);
  }
  
  .svg1 {
    transition: all 0.3s;
    /* if you find some problems change w - h : 30px*/
    padding: 1rem;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    /* color: rgb(255, 174, 0); */
    color: #C13584;
    /* color: #a05a04; */
    fill: currentColor;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3),
      inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.164);
  }
  

  /*isometric prooyection*/
  .iso-pro {
    transition: 0.5s;
  }
  
  .iso-pro:hover a>.svg {
    transform: translate(15px, -15px);
    border-radius: 100%;
  }
  
  /* .iso-pro:hover .text {
      opacity: 1;
      transform: translate(25px, -2px) skew(-5deg);
    } */
  
  .iso-pro:hover .svg {
    transform: translate(5px, -5px);
  }
  
  .iso-pro span {
    opacity: 0;
    position: absolute;
    color: #1877f2;
    border-color: #1877f2;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3),
      inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.164);
    border-radius: 50%;
    transition: all 0.3s;
    height: 50px;
    width: 50px;
  }
  
  .iso-pro:hover span {
    opacity: 1;
  }
  
  .iso-pro:hover span:nth-child(1) {
    opacity: 0.2;
  }
  
  .iso-pro:hover span:nth-child(2) {
    opacity: 0.4;
    transform: translate(5px, -5px);
  }
  
  .iso-pro:hover span:nth-child(3) {
    opacity: 0.6;
    transform: translate(10px, -10px);
  }
  


  /*  */
  
 .card{
    background-color: #000000 !important;
 }
  



 /* form */
 .quote-section h1{
  color: #222;
  font-size: 4rem;
  font-weight: 800;
 }

 .quote-section {
  padding: 50px;
  background-color: #f8f9fa;
}
.quote-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.form-box {
  background: #121212;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
  width: 350px;
  color: #fff;
}
.form-box input, .form-box textarea {
  background: #222;
  border: none;
  color: #fff;
  padding: 10px;
  width: 100%;
  margin: 10px 0;
  border-radius: 5px;
}
.form-box button {
  width: 100%;
  background: white;
  color: black;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.map-box {
  width: 750px;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
      .quote-section {
          padding: 10px;
      }
  }