/* Import the custom font (if it's available via Google Fonts or your custom path) */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

:root {
    --primary-color: #1a73e8;
    --font-color: #333;
    --background-color: #f9f9f9;
    --button-color: #f25485;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    background-color: var(--background-color);
	scroll-behavior: smooth;
}



.header {
    background-color: #006D6F;
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #f4a261;
    text-decoration: none;
}

.logo:hover {
    color: #fff;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-grow: 1;
    justify-content: center; /* Centers menu items */
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    padding: 5px 10px;
    transition: color 0.3s;
}

.menu a:hover {
    color: #f4a261;
}

.dropdown:hover .submenu {
    display: block;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 200px;
    z-index: 999;
}

.submenu li {
    display: block;
}

.submenu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    white-space: nowrap;
}

.submenu li a:hover {
    background-color: #f4a261;
    color: #000;
}

.cta-button {
    padding: 10px 20px;
    background-color: #f4a261;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #fff;
    transform: scale(1.05);
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu {
        flex-wrap: wrap;
        gap: 10px;
    }
    .cta-button {
        margin-top: 10px;
    }
}


/* Hero Section with Full-Width Background Slider */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden; /* Prevents content overflow */
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Ensures the form aligns to the right */
}

/* Slider Container */
.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  animation: sliderAnimation 12s infinite;
}

/* Individual Slide */
.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease-in-out;
}

/* Transparent Overlay for Readability */
.hero-overlay {
  position: relative;
  z-index: 2;
  width: 35%; /* Form takes up 35% of the screen width */
  height: auto;
  display: flex;
  justify-content: flex-end;
  padding: 30px;
}

/* Form Styling */
.hero-form {
  background-color: rgb(195 77 77 / 60%); /* Reduced opacity */
  border-radius: 15px;
  padding: 25px 30px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.hero-form input,
.hero-form select {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.hero-form select option {
  font-size: 16px;
}

.hero-form button {
  padding: 12px;
  font-size: 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-form button:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    height: auto; /* Dynamic height for smaller devices */
    flex-direction: column;
    justify-content: center;
  }

  .hero-overlay {
    width: 90%; /* Form takes full width on smaller devices */
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .hero-form {
    padding: 20px;
  }
}

/* Slider Animation */
@keyframes sliderAnimation {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}





.who-we-are-section {
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.who-we-are-header {
    margin-bottom: 50px;
}

.who-we-are-header h4 {
    font-size: 18px;
    color: #00bcd4;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.who-we-are-header h2 {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1.2;
}

.who-we-are-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.left-content {
    width: 50%;
    padding: 30px;
    color: #333;
    line-height: 1.6;
}

.left-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.left-content h4 {
    font-size: 22px;
    color: #00bcd4;
    font-weight: bold;
    margin-top: 30px;
}

.right-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0);
}

@media (max-width: 768px) {
    .who-we-are-content {
        flex-direction: column;
        text-align: center;
    }

    .left-content, .right-image {
        width: 100%;
        margin-bottom: 30px;
    }

    .left-content p {
        font-size: 14px;
    }

    .who-we-are-header h2 {
        font-size: 36px;
    }
}






.carousel123 {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
}

.carousel-track123 {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide123 {
  min-width: 33.33%; /* Show three slides at a time on desktop */
  box-sizing: border-box;
  padding: 10px;
  position: relative;
}

.slide123 img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.caption123 {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
}

/* Responsive Design */

/* Tablet (Medium screens) */
@media (max-width: 768px) {
  .slide123 {
    min-width: 50%; /* Show two slides at a time */
  }
}

/* Mobile (Small screens) */
@media (max-width: 480px) {
  .slide123 {
    min-width: 100%; /* Show one slide at a time */
  }
}

















/* Showcase Section */
.showcase {
    padding: 50px 20px;
    background: linear-gradient(to right, #f3f3f3, #eaeaea);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #444;
    margin-bottom: 30px;
    font-family: "Arial", sans-serif;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 items per row */
    gap: 30px; /* Spacing between items */
    justify-content: center;
    align-items: start;
}


.showcase-item {
    position: relative;
    text-align: center;
    transition: transform 0.3s ease;
    background: #fff;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.showcase-item:hover {
    transform: translateY(-10px);
}

.showcase-icon {
    max-width: 80px;
    max-height: 80px;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
}

.icon-name {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.hover-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 80%;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
    z-index: 10;
    font-family: "Arial", sans-serif;
}

.showcase-item:hover .hover-popup {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.showcase-item:hover .showcase-icon {
    transform: scale(1.2);
}


/* Responsive Design */
@media (max-width: 1200px) {
  .showcase-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 icons per row on medium screens */
  }
}

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 icons per row on small screens */
  }
}

@media (max-width: 480px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 icons per row on extra-small screens */
  }
}







/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 3rem 1rem;
    background-color: #fff;
}

.stat-item {
    text-align: center;
    max-width: 300px;
}

.stat-item img {
    max-width: 60px;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: bold;
}

.stat-item p {
    font-size: 1rem;
    color: var(--subtext-color);
    margin-top: 0.5rem;
}

/* Process Section */
.process {
    text-align: center;
    padding: 0rem 1rem;
    background-color: #fff;
}

.process h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
/* Concept Section */
.concept-to-completion {
    padding: 0rem 1rem;
    background-color: #fff;
    text-align: center;
}

.concept-container {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.concept-box {
    flex: 1;
    max-width: 24%;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.concept-box img {
    max-width: 100%;
    margin-bottom: 1rem;
}

.concept-box h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.concept-box h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.concept-box p {
    font-size: 1rem;
    color: var(--subtext-color);
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .concept-box {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .concept-container {
        flex-direction: column;
    }
}

.section123 {
  padding: 50px 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.heading-text123 {
  text-align: center;
  font-size: 2em;
  color: #333333;
  margin-bottom: 30px;
  font-weight: bold;
}

.stats-container123 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.image-wrapper123 {
  flex: 1;
  max-width: 300px;
}

.image123 {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stats123 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stats123 > div {
  background-color: #ffe6ed;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.number123 {
  color: #e60073;
  font-size: 2.5em;
  margin: 0;
  font-weight: bold;
  animation: fadeIn123 1s ease-in;
}

.text123 {
  color: #555555;
  font-size: 1em;
  margin: 10px 0 0;
}

.designer-title123 {
  text-align: center;
  font-size: 1.5em;
  color: #333333;
  margin-bottom: 20px;
}

.designer-container123 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.designer-card123 {
  background-color: #ffe6ed;
  padding: 0px;
  border-radius: 10px;
  text-align: center;
  max-width: 150px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.designer-img123 {
  width: 100%;
  border-radius: 50%;
  margin-bottom: -20px;
}

.designer-name123 {
  font-size: 1em;
  font-weight: bold;
  color: #333333;
  margin-bottom: 5px;
}

.designer-projects123 {
  font-size: 0.9em;
  color: #777777;
}

/* Animation for numbers */
@keyframes fadeIn123 {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* General Styling */
.machinery-gallery {
    background: #f8f9fa;
    padding: 50px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #f4a261;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Gallery Wrapper */
.gallery-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1400px; /* Increased width */
    margin: 0 auto;
    border-radius: 10px;
}

.gallery {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: max-content;
    padding: 20px 0;
}

.gallery:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Machine Item */
.machine-item {
    position: relative;
    width: 500px; /* Increased width for larger images */
    height: 300px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.machine-item:hover {
    transform: scale(1.05);
}

.machine-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Hover Info */
.hover-info {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: top 0.3s;
}

.machine-item:hover .hover-info {
    top: 0;
}

.hover-info h3 {
    font-size: 1.5em;
    color: #f4a261;
}

.hover-info p {
    font-size: 1em;
    line-height: 1.4;
}

.icon {
    margin-right: 5px;
}

/* Full-Screen View */
.fullscreen-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
    padding: 20px;
}

.fullscreen-view.active {
    display: flex;
}

#fullscreen-img {
    max-width: 90%;
    max-height: 60%;
    border-radius: 10px;
}

.fullscreen-content {
    margin-top: 20px;
    color: white;
    text-align: center;
    font-size: 1.2em;
}






/* General Section Styling */
.before-after-gallery {
  position: relative;
  width: 100%;
  height: 100vh; /* Full height of the viewport */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #c1c1b3;

}

/* Background Overlay */
.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/slider1.jpg'); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  filter: blur(5px); /* Blur effect */
  z-index: -1; /* Place it behind the content */
  opacity: 0.7; /* Slight transparency */
}

/* Content Wrapper */
.content-wrapper {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Before and After Slider */
.before-after-slider {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

/* Before and After Wrapper */
.before-after-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
  background: rgba(255, 255, 255, 0.1); /* Subtle transparency for better design */
}

/* Before Image */
.before-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* After Image */
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%; /* Default width */
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 2;
  overflow: hidden;
}

/* Slider Handle */
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%; /* Centered by default */
  width: 4px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* White handle with opacity */
  z-index: 3;
  transform: translateX(-50%);
  cursor: pointer;
}

/* Overlay Text */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8); /* Light-colored transparent text */
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  pointer-events: none; /* Ensure it doesn't interfere with sliding */
  z-index: 4;
  text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .before-after-slider {
    height: 300px;
  }

  .overlay-text {
    font-size: 18px;
  }
}



  
/* Section Styling */
.modular-services {
    padding: 50px 20px;
    background: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #f4a261;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Grid Styling */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.service-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
    filter: brightness(0.8);
}

.service-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.5);
}

/* Hover Effect */
.hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s, transform 0.3s;
    transform: scale(0.9);
}

.service-item:hover .hover-effect {
    opacity: 1;
    transform: scale(1);
}

.hover-effect h3 {
    font-size: 1.5em;
    color: #f4a261;
    margin-bottom: 10px;
}

.hover-effect p {
    font-size: 1em;
    line-height: 1.4;
}

/* Smoke Effect */
.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('smoke-effect.png') center/cover no-repeat;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
    pointer-events: none;
}

.service-item:hover::before {
    opacity: 0.3;
}








/* General Contact Us Styling */
.contact-us {
  background: #f7f7f7;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns layout */
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box, .map-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-box h3, .map-box h3 {
  font-size: 24px;
  color: #1d3b58;
  margin-bottom: 20px;
}

.info-box p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.info-box a {
  color: #00bcd4;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

.map-box iframe {
  border-radius: 12px;
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  font-size: 32px;
  color: #1d3b58;
  margin-bottom: 20px;
}

.contact-form .form-input {
  margin-bottom: 20px;
}

.contact-form label {
  font-size: 16px;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background: #f1f1f1;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
  background: #ffffff;
}

.contact-form .submit-btn {
  background-color: #00bcd4;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  width: 100%;
  transition: background-color 0.3s ease;
}

.contact-form .submit-btn:hover {
  background-color: #0288d1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr; /* Stack to one column */
  }

  .contact-info, .contact-form {
    width: 100%;
  }
}






/* General Footer Styling */
.footer {
  background: linear-gradient(135deg, #1d3b58, #3e658c);
  color: white;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  position: relative;
}

.footer-background {
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Title */
.footer-title h1 {
  font-size: 60px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.footer-title h1::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #00bcd4;
}

/* Sliding Animation */
.footer-title h1 span {
  display: inline-block;
  position: relative;
  animation: slide-text 4s ease-in-out infinite, text-change 4s ease-in-out 2s infinite;
}

/* Footer Sections */
.footer-sections {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 30px;
}

.footer-section {
  width: 22%;
  padding: 20px;
}

.footer-section h3 {
  font-size: 20px;
  color: #00bcd4;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-section ul li:hover {
  color: #00bcd4;
  cursor: pointer;
}

/* Social Icons Styling */
.social-icons a {
  font-size: 24px;
  margin: 10px;
  color: white;
  text-decoration: none;
}

.social-icons a:hover {
  color: #00bcd4;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  background-color: #1d3b58;
  color: white;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-sections {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-title h1 {
    font-size: 40px;
  }
}

/* Sliding Text Animation */
@keyframes slide-text {
  0% {
    transform: translateX(100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Text Change Animation */
@keyframes text-change {
  0% {
    content: "Creative Interiors";
  }
  100% {
    content: "Vector Interiors";
  }
}
