* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow-x: hidden;
}

/* Sticky Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Logo */

.logo img {
    width: 200px;
}
.logo {
  font-size: 22px;
  font-weight: bold;
}

.logo span {
  color: #6a1b9a;
}

/* Menu */
.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu li {
  position: relative;
}

.menu li:hover > .submenu {
  display: block;
}
.menu a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #6a1b9a;
}

.menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #6a1b9a;
  left: 0;
  bottom: -3px;
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.submenu li:hover > .submenu {
  display: block;
}
/* Dropdown */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  min-width: 220px;
  display: none;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 999;
}

.submenu a:hover {
  background: #f3f0fa;
  color: #6a1b9a;
}


.submenu li {
  position: relative;
}

.submenu .submenu {
  top: 0;
  left: 100%;
}

.submenu a {
  display: block;
  padding: 10px;
}

.dropdown:hover > .submenu {
  display: block;
}

/* Sub submenu */
.submenu .submenu {
  left: 100%;
  top: 0;
}

/* Hero Image */
.hero {
  height: 100vh;
  background: url("images/tiles_image.gif") no-repeat center center/cover;
  
  margin-top: 115px;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {

  .menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
    padding: 20px;
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .submenu {
    position: static;
  }

}

 .nav {
    margin-right: 135px;
}
/* footer code*/
/* ===== Footer Style ===== */

.footer {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer p {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5e1;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 15px;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #38bdf8;
  padding-left: 5px;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 15px;
  color: #94a3b8;
}

/* Tablet */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer ul li a:hover {
    padding-left: 0;
  }
}

.footer i {
  margin-right: 8px;
  color: #38bdf8;
}

.footer-col ul li a {
  display: inline-block;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #38bdf8;
  transform: translateX(5px);
}

/* Social Media Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 8px;
  border-radius: 50%;
  background: #1e293b;
  color: #fff;
  font-size: 16px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #fff;
  transform: translateY(-4px);
}
/* about Section */
.about-section {
  padding: 60px 20px;
}

/* Container */
/* About animation */

.about-image{
  animation: slideLeft 1s ease;
}

.about-content{
  animation: slideRight 1s ease;
}

@keyframes slideLeft{
  from{
    transform: translateX(-80px);
    opacity:0;
  }
  to{
    transform: translateX(0);
    opacity:1;
  }
}

@keyframes slideRight{
  from{
    transform: translateX(80px);
    opacity:0;
  }
  to{
    transform: translateX(0);
    opacity:1;
  }
}
.about-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Image */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  width:600px;
}

/* Content */
.about-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.slider-header h2{
text-align: center;
font-size: 45px;
margin-top:70px;
}
/* Button */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0f172a;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #38bdf8;
}

/* Tablet */
@media (max-width: 992px) {
  .about-container {
    gap: 25px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-content {
    text-align: left;
  }
}

/* contcat page */
/* Contact Section */
/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background: #f8fafc;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}

/* Contact Info */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.contact-info i {
  margin-right: 10px;
  color: #0f172a;
}

/* Form */
.contact-form {
  flex: 1;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
}

.contact-form button {
  padding: 10px;
  border: none;
  background: #0f172a;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #38bdf8;
}

/* Map Section */
.map-section iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

@media (max-width: 768px) {

  .contact-container {
    flex-direction: column;
  }

  .map-section iframe {
    height: 250px;
  }

}

.form-heading {
  font-size: 26px;
  margin-bottom: 20px;
  color: #0f172a;
  position: relative;
}

.form-heading::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #38bdf8;
  display: block;
  margin-top: 8px;
}

/* Page Title Section */
/* Page Title Section */
/* Page Title Section */
.page-title {
  height: 400px;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
              url('images/pagetitle2.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.page-title h1 {
  font-size: 38px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.breadcrumb {
  font-size: 14px;
}

.breadcrumb a {
  color: #38bdf8;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-title {
    height: 220px;
  }

  .page-title h1 {
    font-size: 24px;
  }

  .breadcrumb {
    font-size: 15px;
  }
}

/* Section */
/* Section */

.gallery-heading{
  font-size: 34px;
  text-align: center;

}

.gallery-item{
  animation: slideUp 1s ease;
}

@keyframes slideUp{
  from{
    transform: translateY(60px);
    opacity:0;
  }
  to{
    transform: translateY(0);
    opacity:1;
  }
}
.gallery-section {
  padding: 30px 20px;

}

.gallery-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 40px;
}

/* Tabs */
.tabs {
  width: 200px;
  display: flex;
  flex-direction: column;
}

.tab-btn {
  padding: 12px;
  border: none;
  background: #f1f1f1;
  cursor: pointer;
  text-align: left;
  margin-bottom: 10px;
  transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
  background: #0f172a;
  color: #fff;
}

/* Content */
.tab-content {
  flex: 1;
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  margin-bottom: 10px;
}

.tab-content p {
  margin-bottom: 20px;
  font-size: 15px;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery-item{
background:#fff;
border-radius:8px;
overflow:hidden;
text-align:center;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.gallery-item img{
width:100%;
transition:0.4s;
}

.gallery-item:hover img{
transform:scale(1.1);
}

.gallery-item h4{
margin:10px 0 5px;
}

.gallery-item p{
font-size:15px;
padding:0 10px 15px;
color:#555;
}
/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 6px;
}

@media (max-width:768px){
.gallery{
grid-template-columns:repeat(2,1fr);
}
}
@media (max-width: 768px) {

  .gallery-container {
    flex-direction: column;
  }

  .tabs {
    flex-direction: row;
    width: 100%;
  }

  .tab-btn {
    flex: 1;
    text-align: center;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

 /* vission/mission */

   .section {
    max-width: 1280px;
    margin: 50px auto;
    padding: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .box {
    background: #fff;
    flex: 1 1 45%;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    border-radius: 10px;
    min-width: 280px;
  }

  .box h2 {
    margin-top: 0;
    color: #333;
    font-size: 1.8em;
  }

  .box p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
  }

  /* Responsive for smaller screens */
  @media (max-width: 768px) {
    .section {
      flex-direction: column;
      margin: 20px;
    }
    .box {
      flex: 1 1 100%;
    }
  }

  /* gallery */
/*
  .gallery {
    max-width: 1300px;
    margin: 50px auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }*/

  @media(max-width:768px){
.brand-gallery{
grid-template-columns:repeat(2,1fr);
}
}
.brand-gallery{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:50px;
padding: 50px;
}

.brand-gallery img{
width:100%;
}
/*

.brand-gallery{
  max-width:1300px;
  margin:50px auto;
  padding:20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.brand-gallery img{
  width:100%;
  border-radius:8px;
}

.brand-gallery{
  max-width:1300px;
  margin:50px auto;
  padding:20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.brand-gallery img{
  width:100%;
  border-radius:8px;
}

    .brand-gallery {
    max-width: 1300px;
    margin: 50px auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
*/
  .gallery-item {
    flex: 1 1 calc(25% - 20px); /* 4 columns with gap */
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    min-width: 220px;
  }

  .gallery-item img {
    width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
  }

  /* Responsive: 2 columns on tablets, 1 on mobile */
  @media (max-width: 992px) {
    .gallery-item {
      flex: 1 1 calc(50% - 20px);
    }
  }

  @media (max-width: 600px) {
    .gallery-item {
      flex: 1 1 100%;
    }
  }

  /* sliding images*/

    .slider-container {
    max-width: 1300px;
    margin: 50px auto;
    overflow: hidden;
    padding: 20px;
  }

  .slider-track{
display:flex;
gap:20px;
transition:transform 0.5s ease;
will-change: transform;
}

  .slider-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 20px;
  }

  .slider-item {
    flex: 0 0 calc(25% - 20px); /* 4 images visible */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    overflow: hidden;
  }

  .slider-item img {
    width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
  }

  /* Buttons */
  .slider-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    margin: 10px 5px;
    border-radius: 5px;
  }

.core-header h2{
  font-size: 45px;
  text-align: center;
  padding:30px;
}
  /* Responsive */
  @media (max-width: 992px) {
    .slider-item {
      flex: 0 0 calc(50% - 20px);
    }
  }

  @media (max-width: 600px) {
    .slider-item {
      flex: 0 0 100%;
    }
  }

   .slider-container { max-width:1200px; margin:50px auto; overflow:hidden; padding:20px; }
  .slider-track { display:flex; gap:20px; transition: transform 0.5s ease; }
  .slider-item { flex:0 0 calc(25% - 20px); background:#fff; border-radius:10px; box-shadow:0 4px 12px rgba(0,0,0,0.1); overflow:hidden; }
  .slider-item img { width:100%; border-radius:10px; object-fit:cover; }

  @media(max-width:992px){ .slider-item{ flex:0 0 calc(50% - 20px); } }
  @media(max-width:600px){ .slider-item{ flex:0 0 100%; } }

  /* core Features Section*/
  .features{
    max-width:1300px;
    margin:auto;
    padding:60px 20px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.feature-box{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    transition:0.3s;
}

.feature-box:hover{
    transform:translateY(-5px);
}

.feature-box i{
    font-size:32px;
    color:#0a8a7a;
    margin-bottom:15px;
}

.feature-box h3{
    font-size:18px;
    margin-bottom:10px;
}

.feature-box p{
    font-size:15px;
    color:#666;
}

/* Tablet */
@media(max-width:900px){
    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:500px){
    .features-grid{
        grid-template-columns:1fr;
    }
}
/* Core Features Animation */

.feature-box{
  opacity:0;
  animation: slideUp 0.9s ease forwards;
}

/* Left side boxes */
.feature-box:nth-child(1),
.feature-box:nth-child(4){
  animation: slideLeft 0.9s ease forwards;
}

/* Middle boxes */
.feature-box:nth-child(2),
.feature-box:nth-child(5){
  animation: slideUp 0.9s ease forwards;
}

/* Right side boxes */
.feature-box:nth-child(3),
.feature-box:nth-child(6){
  animation: slideRight 0.9s ease forwards;
}

/* Animations */

@keyframes slideLeft{
  from{ transform:translateX(-80px); opacity:0;}
  to{ transform:translateX(0); opacity:1;}
}

@keyframes slideRight{
  from{ transform:translateX(80px); opacity:0;}
  to{ transform:translateX(0); opacity:1;}
}

@keyframes slideUp{
  from{ transform:translateY(60px); opacity:0;}
  to{ transform:translateY(0); opacity:1;}
}