

/* Prevent vertical scroll */
body {
    overflow-x: hidden; 
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}
/* Initial state - hidden with opacity 0 */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px); /* Slightly offset */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    /* Makes element invisible until it appears */
    visibility: hidden;
}

/* Fade-in effect - visible with opacity 1 */
.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}


/* Container for top-bar and navbar */
.top-bar, .navbar {
    width: 100%;
    left: 0;
    z-index: 9999;  /* Make sure both are on top of other content */
}

/* Top bar */
.top-bar {
    position: fixed;   /* Keep the top-bar fixed */
    top: 0;
    background-color: #000000;
    color: white;
    padding: 10px;
    text-align: left;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar span {
    margin-left: 20px;
}

.consultancy-btn {
    background-color: #ffd700;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-right: 20px;
}

.consultancy-btn:hover {
    background-color: #daa520;
}

/* Navbar */
.navbar {
    position: fixed;   /* Keep the navbar fixed */
    top: 50px;  /* Adjust this to be below the top-bar */
    background-color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ecf0f1;
    z-index: 9998; /* Keeps it under the top-bar */
    width: 100%;
}


.logo img {
    text-decoration: none;
    width: 100%;
    height: 60px;
    font-weight: bold;
    color: #daa520;
}

.logo span {
    color: #2980b9;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-right: 40px;
}

.nav-links li {
    display: inline;
    margin-left: 10px;
}

.nav-links a {
    text-decoration: none;
    font-weight: bold;
    margin-left: 10px;
    color: #ffd700; /* Gold */
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #daa520; /* Goldenrod */
}

/* General Styles for Mobile View */
@media (max-width: 768px) {
    /* Adjust Top Bar for Mobile */
    .top-bar {
        flex-direction: column; /* Stack the contact info and button vertically */
        align-items: flex-start;
        padding: 10px;
        font-size: 12px;  /* Reduce the font size */
    }

    .top-bar span, 
    .consultancy-btn {
        margin: 5px 0;  /* Add space between elements in mobile view */
    }

    /* Navbar Mobile Style */
    .navbar {
        flex-direction: column;  /* Stack the logo and nav links */
        align-items: flex-start;
        padding: 10px 20px;
        top: 100px;
        right: 0px;
    }

    /* Nav Links */
    .nav-links {
        display: none;  /* Hide the menu by default */
        flex-direction: column;  /* Stack links vertically */
        width: 100%;  /* Full width menu */
        padding: 10px 0;
        background-color: white;  /* Ensure visible background */
        border-top: 1px solid #ddd;  /* Optional: Add a border for separation */
    }

    .nav-links li {
        width: 100%;
        text-align: left;  /* Align the links to the left */
        padding: 10px;
    }

    .nav-links li a {
        display: block;  /* Ensure each link takes up full width */
        width: 100%;
        padding: 10px;
    }

    /* Hamburger Icon */
    .navbar .hamburger {
        display: block;  /* Show hamburger icon on mobile */
        cursor: pointer;
        font-size: 24px;
        /* margin-right: 10px; */
    }

    /* Show the menu when active */
    .navbar.active .nav-links {
        display: flex;  /* Display menu when navbar is active */
    }
}

/* Desktop and Tablet Styles */
@media (min-width: 769px) {
    .hamburger {
        display: none;  /* Hide hamburger icon on larger screens */
    }
}

/* Slideshow container */
/* Slideshow Container */
.slideshow-container {
    margin-top: 150px;
    position: relative;
    max-width: 100%;
    overflow-x: hidden;
}

.mySlides {
    display: none;
    position: relative;
}

.mySlides img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Text Overlay Styling */
.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
    color: #2c2c2c;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

/* Main Title */
.text-overlay h1 {
    font-family: "Teko", Sans-serif;
    font-size: 60px;
    font-weight: bold;
    margin: 0;
    color: white; /* Dark color to contrast with the lighter overlay */
}

/* Subtitle Text */
.text-overlay p {
    font-size: 30px;  
    font-family: "Teko", Sans-serif;
    font-weight: 300;
    margin: 10px 0 0 0;
    line-height: 1.5;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mySlides img {
        height: 400px; /* Reduce image height on smaller screens */
    }

    .text-overlay {
        padding-left: 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3) 60%);
        align-items: center;
        text-align: center;
    }

    .text-overlay h1 {
        font-size: 32px; /* Reduce title size on smaller screens */
    }

    .text-overlay p {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .mySlides img {
        height: 300px; /* Further reduce image height for very small screens */
    }

    .text-overlay h1 {
        font-size: 28px;
    }

    .text-overlay p {
        font-size: 20px;
    }
}
/* Navigation Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}



.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px;
    background-color: #f7f7f7;
}

/* Left Image */
.image-column {
    flex: 1;
    max-width: 40%;
    margin-right: 50px;
}

.image-column img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.about-us .container {
    display: flex;
    background-color: white;
    align-items: flex-start;
    gap: 20px;
    margin: 20px;
    padding: 20px;
}

.about-content {
    flex: 1;
    max-width: 49%;
    text-align: left;
}

.about-content h1 {
    font-size: 38px;
        font-family: "Teko", Sans-serif;

    color: black;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 30px;
    color: #ffd700;
        font-family: "Teko", Sans-serif;

    margin-bottom: 10px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
}

/* Services Column */
.services-column {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 10px; /* Space between each item */
    margin-top: 14px;
    padding: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #3b5998;
    width: 100%; /* Make each item take the full width */
}

.service-item i {
    font-size: 1.5rem; /* Icon size */
    color: #ffd700; /* Icon color for consistency with screenshot */
}


.service-item p {
    font-size: 15px;
    color: #6785fb;
    margin: 0;
    white-space: nowrap; /* Prevent text wrapping to next line */
}
/* Right Column: Experience Years */
.experience-column {
    
    /* background-image: url("/images/years.webp"); */
  /* background-position: 0 0; */
  background-size: cover;
  /* background-repeat: no-repeat; */
  /* width: 100%; */
  /* height: 100%; */
  /* padding: 10em 0 0 12em; */
    flex: 0.4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-image {
    width: 550px;
    /* height: 100%; */
    height: 550px;
     /* object-fit: cover; */
    background-size: cover;
  background-repeat: no-repeat;
  /* width: 100%; */
    /* opacity: 0.1; Semi-transparent */
}

.experience-overlay {
    position: absolute;
    color: #ffd700;
    text-align: center;
}

.experience-overlay h1 {
        font-family: "Teko", Sans-serif;
    font-size: 120px; /* Reduced slightly for better fit */
    font-weight: bold;
    margin: 0;
}

.experience-overlay p {
        font-family: "Teko", Sans-serif;
        font-weight: 600;
    font-size: 60px;
    color: black;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services-column {
        padding: 10px;
    }

    .service-item {
        font-size: 0.9rem;
        gap: 8px; /* Reduce space between icon and text */
    }

    .service-item i {
        font-size: 1.3rem; /* Slightly smaller icon */
    }

    .service-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-column {
        padding: 5px;
    }

    .service-item {
        font-size: 0.8rem;
        gap: 5px; /* Further reduce space between icon and text */
    }

    .service-item i {
        font-size: 1.1rem; /* Smaller icon size */
    }

    .service-item p {
        font-size: 13px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
   
    .blog-sub-image {
        max-width: 100%; /* Expand to full width on smaller screens */
        border-radius: 5px; /* Slightly reduce border radius for smaller screens */
    }
    .background-image{
        width: 350px;
    height: 500px;
    }
    .container {
        flex-direction: column;
        align-items: center;
    }

    .image-column, .about-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .service-item {
        width: 45%;
    }
}

/* Services Section */
.services-section {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.services-intro h2 {
        font-family: "Teko", Sans-serif;
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 18px;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.service-item-zebra {
    background-color: #201d1d;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
    text-align: left;
}

.service-item-zebra i {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 10px;
}

.service-item-zebra h3 {
    font-family: "Teko", Sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-item-zebra {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .service-item-zebra {
        flex: 1 1 100%;
    }
}

/* Process section */
.our-process {
  text-align: center;
  padding: 50px;
  margin: 20px;
  background-color: #f9f9f9;
}

.process-header h2 {
        font-family: "Teko", Sans-serif;

  font-size: 2.5em;
  color: #333;
  margin-bottom: 40px;
}

.process-steps {
  display: flex;
  justify-content: space-between; /* Spread out the steps horizontally */
  gap: 20px; /* Add space between the steps */
  flex-wrap: nowrap; /* Prevents wrapping */
}

.step {
  flex-basis: 22%; /* Ensure each step takes equal width */
  text-align: left;
}

.step h3 {
        font-family: "Teko", Sans-serif;

  font-size: 3em;
  color: #ffd700;
}

.step h4 {
        font-family: "Teko", Sans-serif;

  font-size: 1.5em;
  margin-top: 15px;
  color: #333;
}

.step p {
  font-size: 1em;
  color: #666;
  margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .process-steps {
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
  }

  .step {
    flex-basis: 45%; /* Adjust width on medium-sized screens */
    margin-bottom: 20px; /* Add spacing below */
  }
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column; /* Stack the steps vertically on small screens */
  }

  .step {
    flex-basis: 100%; /* Full width on small screens */
  }
}

/* Tabs Section */
.tabs {
  display: flex;
  justify-content: center;
  margin-top: 180px;
  margin-bottom: 30px;
}


.tab-button {
  background-color: #f1f1f1;
  font-family: "Teko", Sans-serif;
  border: none;
  padding: 10px 20px;
  margin-right: 10px;
  cursor: pointer;
  font-size: 2em;
}

.tab-button.active {
  background-color: #ffd700;
  color: white;
}

.tab-content {
  display: none;
  margin-bottom: 50px;
}

.tab-content.active {
  display: block;
}
/* Style for the Couture welcome text */
.couture-welcome-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px; /* Center and add space below */
    
}

.couture-welcome-text h2 {
    font-family: "Teko", sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.couture-welcome-text p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

#interior {
  padding: 20px;
}
#couture{
    padding: 20px;
}
.image-gallery-tab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Responsive grid */
  gap: 20px; /* Space between items */
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
  .image-gallery-tab {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust min size for tablets */
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .image-gallery-tab {
    grid-template-columns: 1fr; /* Single column layout for small screens */
    gap: 10px;
  }

  .service-item-tab img {
    height: auto; /* Allow images to scale naturally on narrow screens */
  }
}


.service-item-tab {
  /* background-color: #f9f9f9; */
  /* border-radius: 8px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
}

.service-item-tab:hover {
  transform: translateY(-5px); /* Lift effect on hover */
}

.service-item-tab img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
  cursor: pointer;
}

.service-item-tab img:hover {
  transform: scale(1.05); /* Zoom effect on hover */
}

.service-item-tab h3 {
        font-family: "Teko", sans-serif;

  font-size: 1.2em;
  /* margin: 15px 0; */
  color: #333;
}

.service-item-tab p {
  font-size: 0.9em;
  /* padding: 0 15px 20px; */
  color: #666;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
  gap: 20px; /* Space between items */
}


.image-gallery img {
  width: 90%;
  height: 90%;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.couture-slogan {
    color: #ffd700;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    margin-top: 20px;
}

/* Video container for positioning the play icon */
.video-container {
    position: relative;
    display: inline-block;
    width: 100px; /* Matches the video width */
    height: auto;
}

/* Play icon styling */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4em;
    color: rgba(255, 255, 255, 0.8); /* White with slight transparency */
    pointer-events: none; /* Allows clicks to pass through to video */
}

/* Styling on hover to enhance visibility */
.video-container:hover .play-icon {
    color: #ffd700; /* Change color on hover to match active tab */
    transform: translate(-50%, -50%) scale(1.1); /* Slight zoom */
    transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.05);
}

/* Tiles Modal Styling */
.tiles-modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
}

.tiles-modal-content h3 {
  text-align: center;
  margin-bottom: 20px;
  font-family: "Teko", sans-serif;
  color: #333;
  font-size: 1.5em;
}

.tiles-modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.tiles-modal-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.tiles-modal-gallery img:hover {
  transform: scale(1.05);
}

/* Responsive design for tiles modal */
@media (max-width: 768px) {
  .tiles-modal-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tiles-modal-gallery img {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .tiles-modal-gallery {
    grid-template-columns: 1fr;
  }
  
  .tiles-modal-gallery img {
    height: 200px;
  }
}

/* Modal */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  padding-top: 60px; 
  left: 0;
  top: 130px;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.8); 
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  height: 70%;
  max-width: 600px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 768px) {
  .image-gallery img {
    width: 100%;
    margin-bottom: 10px;
  }
  .modal {
  
  top: 190px;
}

  .modal-content {
    /* top: 130px; */
    width: 90%;
    height: 60%;
  }
  .tabs{
    margin-top: 260px;
  }
}
.prev, .next {
  position: absolute;
  top: 50%;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  padding: 16px;
  border-radius: 5px;
  user-select: none;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Gallery section */
.gallery-section {
  text-align: center;
  padding: 50px 0;
  margin: 20px;
}

.gallery-header h2 {
font-family: "Teko", Sans-serif;
  font-size: 32px;
  margin-bottom: 30px;
}

.image-gallery-zebra {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.image-gallery-zebra img {
  width: 200px;
  object-fit: cover;
  height: 200px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.image-gallery-zebra img:hover {
  transform: scale(1.05);
}
/* Container for video thumbnail */
.video-container {
  position: relative;
  display: inline-block;
  width: 200px;
  height: auto;
  cursor: pointer;
}

/* Styling for the video thumbnail */
.video-thumb-zebra {
  width: 100%;
  height: auto;
  /* border-radius: 8px; */
}
.video-thumb {
 width: 200px;
  object-fit: cover;
  height: 200px;
  /* border-radius: 8px; */
}

/* Play icon styling */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2em;
  color: white;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.video-container:hover .play-icon {
  opacity: 1;
}
/* Mobile Responsive Styling */
@media (max-width: 768px) {
  .image-gallery-zebra img,
  .video-container {
    width: calc(50% - 15px); /* Two items per row on mobile */
  }
}

/* Footer Styles */
.footer {
    background-color: #000000;
    color: white;
    padding: 40px 20px;
    text-align: left;
}

.container-footer {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    width: 30%;
}

.footer-column h3 {
        font-family: "Teko", Sans-serif;

    font-size: 25px;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #B0B0B0;
    text-decoration: none;
}

.whatsapp-button {
    position: fixed;
    bottom: 260px; /* Adjust this value to change the vertical position */
    
    z-index: 1000; /* Ensures the button is on top of other elements */
    background-color: #25D366;
    color: white;
    left:0px;
    border-radius: 0 25px 25px 0; 
    text-align: center;
    text-decoration: none;
    padding: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.whatsapp-button img {
    width: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    border-top: 1px solid #414C5B;
    padding-top: 20px;
}

.social-icons a {
    color: #B0B0B0;
    font-size: 20px;
    margin-right: 15px;
}

.footer-bottom p {
    color: #B0B0B0;
    font-size: 14px;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .container-footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        margin-top: 15px;
    }

    
}
/* Contact Section */
.contact-section {
    /* font-family: Arial, sans-serif; */
    padding: 50px 0;
    margin-top:180px;
}

.container-zebra {
    margin-left: 50px;
    margin-right: 50px;
    /* background-color: #f9f9f9; */
    padding: 20px;
    border-radius: 8px;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.contact-info {
    flex: 1;
    text-align: left;
    /* gap: 100px; */
}

.contact-info h2 {
        font-family: "Teko", Sans-serif;

    color: #1f3b7d;
    font-size: 4rem;
    margin-bottom: 10px;
}

.contact-info p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 20px;
}

.info-box p {
    margin: 20px 0;
    font-size: 1rem;
    color: #333;
}

.info-box i {
    color: #ff8300;
    margin-right: 8px;
}

/* Contact Form */
.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

/* Submit Button */
.submit-btn {
    background-color: #ffd700;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #daa520;
}

/* Map Embed Styling */
.map-container {
    margin-top: 30px;
    width: 100%;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .contact-section {
        padding: 20px;
        
        margin-top:180px;
    }

    .container-zebra {
    margin-left: 0px;
    margin-right: 0px;
    /* background-color: #f9f9f9; */
    padding: 20px;
    border-radius: 8px;
}

    .contact-content {
        flex-direction: column; /* Stack elements on top of each other */
    }

    .contact-info h2 {
        font-size: 2.5rem; /* Smaller font size for mobile */
    }

    .contact-info p, .info-box p {
        font-size: 0.9rem; /* Adjust font size for readability */
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem; /* Adjust font size for inputs */
    }

    .submit-btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .map-container iframe {
        height: 300px; /* Reduce map height on mobile */
    }
}

@media (max-width: 480px) {
    .contact-info h2 {
        font-size: 2rem; /* Further reduce font size on very small screens */
    }

    .contact-section {
        padding: 10px 0;
    }

    .contact-info p, .info-box p {
        font-size: 0.85rem;
    }

    .submit-btn {
        padding: 7px 10px;
    }
}

/* Modal Styles */
.modal-consultancy {
        font-family: "Teko", Sans-serif;

  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgba(0, 0, 0, 0.5); /* Black with opacity */
  overflow: auto;
}

.modal-content-consultancy {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 5px;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-modal:hover,
.close-modal:focus {
  color: #000;
  cursor: pointer;
}

/* Form Styles */
#consultancyForm {
  padding: 10px;
  display: flex;
  flex-direction: column;
}

#consultancyForm label {
  margin-bottom: 5px;
  font-weight: bold;
}

#consultancyForm input,
#consultancyForm textarea {
  margin-bottom: 15px;
  padding: 10px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#consultancyForm button {
  width: auto;
    padding: 15px;
    background-color: #ffd700;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
}

#consultancyForm button:hover {
  background-color: #daa520;
}
@media (max-width: 768px) {

  .modal-content-consultancy {
    margin: 50% auto; /* More vertical space on mobile */
    padding: 15px;
    width: 65%;
  }

  /* Adjust input and button styling for mobile */
  #consultancyForm input, #consultancyForm textarea, #consultancyForm button {
    width: 100%;
    font-size: 1rem;
  }
}
.blog-container {
    margin-top: 200px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px; /* Limit container width */
    margin-left: auto;
    margin-right: auto;
    justify-content: center; /* Center the grid items horizontally */
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center card content horizontally */
    text-align: center; /* Center-align text */
    padding: 15px;
}
.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 15px;
}

.blog-tag {
    display: inline-block;
    background-color: #ffd700;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 10px 0;
}

.blog-date {
    color: #777;
    font-size: 0.9rem;
}

.blog-description {
    color: #555;
    margin-top: 10px;
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 768px) {
    .blog-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Smaller columns for tablets */
        gap: 15px;
    }

    .blog-card img {
        height: 180px; /* Adjust image height */
    }
}

@media (max-width: 480px) {
    .blog-container {
        grid-template-columns: 1fr; /* Single column layout for mobile */
        gap: 10px;
    }

    .blog-card img {
        height: 160px; /* Further adjust image height for small screens */
    }

    .blog-title {
        font-size: 1.1rem; /* Adjust font size for readability */
    }

    .blog-description {
        font-size: 0.9rem; /* Adjust description font size for mobile */
    }
}
/* Blog Detail Styles */
.blog-detail {
    padding: 60px 20px;
    margin-top: 140px;
    font-family: Arial, sans-serif;
    color: #333;
    display: flex;
    justify-content: center; /* Center content horizontally */
}

.blog-detail .container {
    max-width: 1000px; /* Constrain width for better readability */
    width: 100%;
    margin: auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center items in the container */
}

.blog-detail h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    gap: 10px;
    font-size: 1rem;
    color: #999;
    margin-bottom: 30px;
    text-align: center;
    justify-content: center; /* Center metadata items */
}

.blog-featured-image img {
    width: 600px;
    height: 500px;
    border-radius: 8px;
    object-fit: cover;
}
/* Custom color for the first title */
.highlight-title {
    color: #ff6600; /* Replace with your desired color */
}

/* Bullet point styling */
#blog-content ul {
        text-decoration: none;

    margin: 20px 0;
    padding-left: 20px;
    text-align: left;
}

#blog-content ul li {
    margin-bottom: 10px;
    text-decoration: none;
    /* list-style-type: disc; */
    font-size: 1.1rem;
    line-height: 1.6;
}

#blog-content ul li:before {
    font-weight: bold;
        text-decoration: none;

}

.gold-bold {
    color: #FFD700; /* Gold color */
}

@media (max-width: 768px) {
    .blog-featured-image img {
        max-width: 300px;
        height: auto; /* Adjust height based on width */
    }
}

#blog-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    text-align: center; /* Center text in the article */
    max-width: 800px; /* Limit width for readability */
}

.blog-sub-image {
    width: 100%;
    max-width: 500px;
    margin: 15px auto; /* Center the sub-images */
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

#blog-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 30px;
    color: #333;
    text-align: center;
}

#blog-content img {
    width: 600px;
    height: 500px;
    border-radius: 8px;
}

#blog-content ul {
    margin: 20px 0;
    padding-left: 20px;
    text-align: left; /* Align lists to the left for readability */
}

#blog-content ul li {
    margin-bottom: 10px;
    list-style-type: disc;
    font-size: 1.1rem;
}

#blog-content ul li:before {
    content: "• ";
    color: #333;
    font-weight: bold;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .blog-detail h1 {
        font-size: 2.5rem;
    }

    .blog-featured-image img {
        width: 90%;
        max-width: 400px;
        height: auto;
    }

    #blog-content h2 {
        font-size: 1.5rem;
    }

    #blog-content {
        font-size: 1rem;
        max-width: 90%;
    }

    #blog-content ul li {
        font-size: 1rem;
    }

    .blog-sub-image {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .blog-detail h1 {
        font-size: 2rem;
    }

    .blog-meta {
        font-size: 0.85rem;
    }

    .blog-featured-image img {
        width: 100%;
        height: auto;
    }

    #blog-content h2 {
        font-size: 1.3rem;
    }

    #blog-content {
        font-size: 0.95rem;
    }

    #blog-content ul li {
        font-size: 0.95rem;
    }
}
/* Reviews Section Styles */
.reviews-container {
    margin-top: 180px;
    padding: 50px 20px;
    min-height: 70vh;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-header h2 {
    font-family: "Teko", Sans-serif;
    font-size: 48px;
    color: #333;
    margin-bottom: 15px;
}

.reviews-header p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.btn-add-review {
    background-color: #ffd700;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: "Teko", Sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-add-review:hover {
    background-color: #daa520;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Review Card */
.review-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.review-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-family: "Teko", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars i {
    color: #ffd700;
    font-size: 18px;
}

.review-stars i.empty {
    color: #e0e0e0;
}

.review-message {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

/* Review Modal Styles */
.modal-review {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content-review {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-content-review h2 {
    font-family: "Teko", Sans-serif;
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.close-review-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-review-modal:hover {
    color: #000;
}

/* Review Form Styles */
#reviewForm {
    display: flex;
    flex-direction: column;
}

#reviewForm label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

#reviewForm input[type="text"],
#reviewForm textarea {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

#reviewForm textarea {
    min-height: 120px;
    resize: vertical;
}

/* Star Rating Styles */
.star-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star-rating i {
    font-size: 30px;
    color: #e0e0e0;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating i:hover,
.star-rating i.active {
    color: #ffd700;
}

#reviewForm button[type="submit"] {
    background-color: #ffd700;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-family: "Teko", Sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

#reviewForm button[type="submit"]:hover {
    background-color: #daa520;
}

/* Empty State */
.empty-reviews {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-reviews i {
    font-size: 60px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.empty-reviews p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-container {
        margin-top: 220px;
    }
    
    .reviews-header h2 {
        font-size: 36px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-content-review {
        margin: 20% auto;
        width: 95%;
        padding: 20px;
    }
    
    .star-rating i {
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .reviews-header h2 {
        font-size: 32px;
    }
    
    .reviews-header p {
        font-size: 16px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .reviewer-name {
        font-size: 20px;
    }
    
    .review-stars i {
        font-size: 16px;
    }
}
/* Review Modal Styles */
.review-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.review-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { 
        transform: translateY(-50px); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0); 
        opacity: 1; 
    }
}

.review-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-modal-header h2 {
    color: #333;
    font-size: 24px;
    margin: 0;
    font-family: 'Teko', sans-serif;
}

.close-review-modal {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-review-modal:hover {
    color: #000;
}

.review-form {
    display: flex;
    flex-direction: column;
}

.review-form label {
    margin-top: 15px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 600;
}

.review-form input,
.review-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: Arial, sans-serif;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #333;
}

.review-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Star Rating Styles */
.star-rating {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.star-rating .star {
    font-size: 30px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
}

.star-rating .star:hover,
.star-rating .star.selected {
    color: #ffd700;
}

/* Submit Button */
.submit-review-btn {
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Teko', sans-serif;
    letter-spacing: 1px;
}

.submit-review-btn:hover {
    background-color: #555;
}

.submit-review-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
}

/* Success Message */
.success-message {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    animation: slideIn 0.5s ease-out;
}

.success-message i {
    margin-right: 10px;
}

@keyframes slideIn {
    from { 
        right: -300px; 
    }
    to { 
        right: 20px; 
    }
}

/* Review Cards */
.review-date {
    color: #888;
    font-size: 12px;
    margin-top: 10px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.review-header-info {
    margin-bottom: 15px;
}

.reviewer-name {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 20px;
}

.review-stars {
    color: #ffd700;
}

.review-stars .empty {
    color: #ddd;
}

.review-message {
    color: #666;
    line-height: 1.6;
}

/* Loading and Error States */
.loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 18px;
}

.error {
    text-align: center;
    padding: 40px;
    color: #d32f2f;
    font-size: 16px;
}

.no-reviews {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .review-modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .star-rating .star {
        font-size: 25px;
    }
}