* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
/* === Base Navbar === */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:skyblue;
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0d0e0e;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo {
  font-size: 28px;
  font-weight: bold;
}

/* Links container */
.nav1 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav1 a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 12px;
  transition: background 0.3s;
}

.nav1 a:hover,
.nav1 a.active {
  background: #333;
  border-radius: 4px;
}

/* === Dropdown Menu === */
.navbar2 {
  position: relative;
}

.submenu-label {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px;
  background: transparent;
  font-size: 16px;
}

.navbar3 {
  display: none;
  position: absolute;
  background: #222;
  top: 40px;
  left: 0;
  flex-direction: column;
  min-width: 150px;
  border-radius: 4px;
  overflow: hidden;
}

.navbar3 a {
  padding: 10px;
  display: block;
}

.navbar3 a:hover {
  background: #333;
}

/* Show dropdown when checkbox is checked */
#pages-toggle:checked + .navbar3 {
  display: flex;
}

/* === Hamburger === */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Hide checkbox */
#menu-toggle,
#pages-toggle {
  display: none;
}

/* === Responsive Styles === */
@media (max-width: 789px) {
  .hamburger {
    display: block;
    color: #fff;
  }

  .nav1 {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #0d0e0e;
    flex-direction: column;
    gap: 0;
    display: none;
  }

  .nav1 a,
  .submenu-label {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-top: 1px solid #333;
  }

  /* Show menu when checked */
  #menu-toggle:checked ~ .nav1 {
    display: flex;
  }

  /* Dropdown inside mobile */
  .navbar3 {
    position: static;
    background: #1a1a1a;
    width: 100%;
  }

  .navbar3 a {
    border-top: 1px solid #333;
  }
}

/* HOME SECTION */
.home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 0 50px;
    gap: 20px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
}

/* Left Text Section */
.home1 {
    flex: 1;
    min-width: 280px;
    padding: 30px;
}

.home1 h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #00796b;
}

.home1 h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #004d40;
}

.home1 h2 span {
    color: #ff6b6b;
}

.home1 h3 {
    font-size: 1.2rem;
    padding: 20px;
    background-color: #2f7777;
    color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.home1 h3:hover {
    transform: scale(1.05);
}

/* Right Image Section */
.home2 {
    flex: 1;
    width: 280px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home3 {
    width: 400px;
    height: 500px;
    background-color: darkcyan;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    margin-left: 250px;
}

.home4 img {
    width: 450px;
    height: 400px;
    border-radius: 20px;
    position: absolute;
   top: 44px;
    left: 30px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.home4 img:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* Features Section */
.home5 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 20px;
}

.home5 div p {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    padding: 15px 20px;
    background-color: #00796b;
    color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.home5 div p img {
    margin-right: 10px;
    width: 35px;
}

.home5 div p:hover {
    transform: translateY(-5px);
    background-color: #004d40;
}

/* RESPONSIVE */

/* TABLET: up to 789px */
@media (max-width: 789px) {
    .home {
        flex-direction: column;
        height: auto;
        padding: 30px 20px;
        gap: 30px;
    }
    .home1, .home2 {
        flex: unset;
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    .home3 {
        width: 300px;
        height: 350px;
        margin-left: 0;
        margin-top: 50px;
    }
    .home4 img {
        width: 250px;
        height: 220px;
        top: -20px;
        left: 0;
        position: relative;
    }
    .home1 h1 {
        font-size: 2rem;
    }
    .home1 h2 {
        font-size: 2.2rem;
    }
    .home1 h3 {
        font-size: 1rem;
        padding: 15px;
    }
    .home5 {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .home5 div p {
        width: 80%;
        justify-content: center;
        font-size: 1rem;
    }
    .home5 div p img {
        width: 30px;
        margin-right: 8px;
    }
}

/* MOBILE: up to 426px */
@media (max-width: 426px) {
    .home {
        padding: 20px 10px;
        gap: 20px;
    }
    .home1 h1 {
        font-size: 1.5rem;
    }
    .home1 h2 {
        font-size: 1.8rem;
    }
    .home1 h3 {
        font-size: 0.9rem;
        padding: 10px;
    }
    .home3 {
        display: none;
    }
    .home4 img {
        width: 280px;
        height: 260px;
        top: -15px;
        left: 0;
        position: relative;
    }
    .home5 div p {
        width: 90%;
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    .home5 div p img {
        width: 22px;
        margin-right: 6px;
    }
}







/* ABOUT SECTION */
.about {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* HERO SECTION */
.hero1 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

/* LEFT IMAGES */
.hero2 {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 300px;
}

.hero-images {
  position: relative;
}

.img-main {
  width: 100%;
  max-width: 400px;
  height: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.img-main:hover {
  transform: scale(1.05);
}

.img-side {
  position: absolute;
  top: -20px;
  left: -30px;
  width: 150px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.img-side:hover {
  transform: scale(1.05);
}

/* HERO TEXT */
.hero3 {
  flex: 1;
  min-width: 300px;
}

.hero3 h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
}

.hero3 h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ff6b6b;
  margin-top: 8px;
  border-radius: 2px;
}

.hero3 p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

/* FEATURES */
.hero4 p {
  font-weight: bold;
  margin: 10px 0;
}

.hero5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.hero5 button {
  padding: 12px 25px;
  border: none;
  background-color: #ff6b6b;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero5 button:hover {
  background-color: #ff3b3b;
  transform: scale(1.05);
}

.social-icons img {
  margin-left: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* RESPONSIVE STYLES */

/* TABLET: up to 789px */
@media (max-width: 789px) {
  .hero1 {
    flex-direction: column;
    gap: 30px;
  }
  .hero2, .hero3 {
    flex: unset;
    width: 100%;
    text-align: center;
  }
  .img-side {
    top: -15px;
    left: -20px;
    width: 120px;
  }
  .hero3 h2 {
    font-size: 1.8rem;
  }
  .hero5 {
    flex-direction: column;
    align-items: center;
  }
  .hero5 button {
    width: 100%;
    max-width: 250px;
  }
}

/* MOBILE: 320px to 426px */
@media (max-width: 426px) {
  .img-main{
    height: 250px;
  }
  .about {
    padding: 40px 15px;
  }
  .hero h2{
    font-size: large;
  }
  .hero3 h2 {
    font-size: 1.5rem;
  }
  .img-main {
    max-width: 250px;
    margin-bottom: 10px;
  }
  .img-side {
    width: 100px;
    top: -10px;
    left: -15px;
  }
  .hero3 p {
    font-size: 14px;
  }
  .hero5 button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .social-icons img {
    width: 30px;
    margin-left: 10px;
  }
}













/* =========================
   CARDS SECTION
   ========================= */
.cards {
  padding: 60px 20px;
  background: #d4e9fd;
  text-align: center;
  color: #fff;
}

.cards h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  color: black;
}

/* Extra Feature: Animated underline */
.cards h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  /* background: #f39c12; */
  margin: 10px auto 0;
  border-radius: 2px;
  animation: expand 1s ease-in-out infinite alternate;
}

@keyframes expand {
  from { width: 40px; }
  to { width: 70px; }
}

/* Grid Layout */
.items1 {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 25px;
  margin-left: 100px;
}

/* Card Styles */
.card1 {
  width: 75% !important;
  /* background: #1b1c1d; */
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.7s ease both;
  position: relative;
  overflow: hidden;
}

/* Extra Feature: glowing border effect */
.card1::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: border-color 0.4s ease;
}

.card1:hover::before {
  border-color: #f39c12;
}

/* Card icon circle */
.card-icon {
  background: #f39c12;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.card-icon img {
  width: 35px;
  height: 35px;
  filter: invert(100%);
}

.card1 h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #f39c12;
  text-transform: capitalize;
}

.card1 p {
  font-size: 14px;
  color: #141313;
  line-height: 1.6;
}

/* Hover Effect */
.card1:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.card1:hover .card-icon {
  background: #fff;
}

.card1:hover .card-icon img {
  filter: invert(0%);
}

/* Animation */
@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}

/* =========================
   RESPONSIVENESS
   ========================= */

/* 📱 Tablet (427px – 789px) */
@media (max-width: 789px) {
  .items1 {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    margin-left: 0; /* fix alignment */
  }

  .cards h2 {
    font-size: 26px;
  }

  .card1 {
    width: 100% !important;
    max-width: 320px;
    margin: 0 auto;
    height: auto;
  }

  .card1 h3 {
    font-size: 18px;
  }

  .card1 p {
    font-size: 13px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .card-icon img {
    width: 30px;
    height: 30px;
  }
}

/* 📱 Mobile (320px – 426px) */
@media (max-width: 426px) {
  .items1 {
    grid-template-columns: 1fr; /* single column */
    margin-left: 0;
  }

  .cards {
    padding: 40px 10px;
  }

  .cards h2 {
    font-size: 22px;
  }

  .card1 {
    padding: 20px 15px;
    width: 100% !important;
    max-width: 280px;
    margin: 0 auto;
  }

  .card-icon {
    width: 50px;
    height: 50px;
  }

  .card-icon img {
    width: 25px;
    height: 25px;
  }

  .card1 h3 {
    font-size: 16px;
  }

  .card1 p {
    font-size: 12px;
  }
}









.projects {
  display: flex;
  flex-wrap: nowrap;             
  width: 100%;
  min-height: 100vh;
  gap: 20px;
  background-color: white;
  padding: 20px;
  box-sizing: border-box;
 
}


.project1 {
  background-color: darkcyan;
  width: 31%;
  height: 560px;
  color: white;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
}

.project1 h1 span {
  color: #ffd700;
}

.project1 p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.6;
}

/* Right Section */
.project2 {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Rows of project cards */
.imgs1, .imgs2 {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Project Card */
.project-card {
  position: relative;
  width: 700px;
  height: 270px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  
}

.project-card img {
  width: 100%;
 height: 228px;                 /* same height for all */
  object-fit: cover;              /* crop nicely */
  display: block;
  transition: transform 0.3s ease;
}

.project-card:hover img {
  transform: scale(1.1);
  cursor: pointer;
}

/* Overlay text */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.project-card:hover .overlay {
  transform: translateY(0%);
}

.overlay h3 {
  margin: 5px 0;
  font-size: 18px;
}

.overlay p {
  font-size: 14px;
  margin: 0;
}
/* =========================
   RESPONSIVE DESIGN
   ========================= */

/* 📱 Mobile (320px – 426px) */
@media (max-width: 426px) {
  .projects {
    flex-direction: column;       /* stack vertically */
    gap: 15px;
    padding: 15px;
  }

  .project1 {
    width: 100%;                  /* full width */
    height: auto;
    padding: 30px 20px;
    text-align: center;
  }

  .project2 {
    width: 100%;
    gap: 15px;
  }

  .imgs1, .imgs2 {
    flex-direction: column;       /* stack cards */
    align-items: center;
    gap: 15px;
  }

  .project-card {
    width: 100%;                  /* full width */
    max-width: 360px;             /* prevent oversized cards */
    height: auto;
  }

  .project-card img {
    height: auto;
    max-height: 200px;            /* keep images compact */
  }

  .overlay h3 {
    font-size: 16px;
  }

  .overlay p {
    font-size: 12px;
  }

  /* Extra Feature: subtle shadow + hover glow */
  .project-card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .project-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  }
}

/* 📱 Tablet (426px – 789px) */
@media (min-width: 427px) and (max-width: 789px) {
  .projects {
    flex-direction: column;   /* stack but keep big layout */
    gap: 20px;
    padding: 20px;
  }

  .project1 {
    width: 100%;
    height: auto;
    text-align: center;
  }

  .project2 {
    width: 100%;
    gap: 20px;
  }

  .imgs1, .imgs2 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .project-card {
    width: 48%;               /* 2 cards per row */
    height: auto;
  }

  .project-card img {
    height: 200px;
  }

  .overlay h3 {
    font-size: 18px;
  }

  .overlay p {
    font-size: 14px;
  }

  /* Extra Feature: Add a nice hover lift effect */
  .project-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
}










/* Container */
.services {
  width: 100%;
  min-height: 100vh;
  display: flex;
  background-color: white;
  flex-wrap: wrap;
}

/* Left Section */
.service1 {
  width: 40%;
  padding: 80px;
  box-sizing: border-box;
}

.service1 h1 {
  font-size: 32px;
  margin-bottom: 15px;
  color: rgb(35, 91, 202);
}

.service1 p {
  line-height: 1.6;
  color: #444;
}

/* Phone Box */
.ph0 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.ph {
  border: 2px solid darkcyan;
  background-color: darkcyan;
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.ph1 {
  border: 2px solid darkcyan;
  background-color: lightblue;
  padding: 20px;
  height: 100px;
  width: 250px;
  border-radius: 10px;
}

/* Right Section */
.service2 {
  width: 60%;
  padding: 30px;
  box-sizing: border-box;
}

/* Service Cards Layout */
.serv, .serv3 {
  width: 100%;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.card {
  width: 50%;
  background-color: cadetblue;
  padding: 20px;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

.card:hover {
  background-color: darkcyan;
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 1024px) {
  .service1 {
    width: 100%;
    padding: 40px;
  }

  .service2 {
    width: 100%;
    padding: 20px;
  }

  .serv, .serv3 {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }

  .ph0 {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .services {
    flex-direction: column;
    text-align: center;
  }

  .ph0 {
    flex-direction: column;
    align-items: start;
  }

  .ph1 {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .services{
    text-align: center;
  }
  .service1 {
    padding: 20px;
  }

  .ph {
    height: 80px;
    width: 80px;
    margin-left: 100px;
    }
  }

  .ph1 {
    height: auto;
    padding: 15px;
  }
  .card{
        margin-left: 11px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
  }









/* TEAM Section */
#our-team {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

#our-team h1 {
  font-size: 32px;
  color: #1a73e8;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

/* Extra Feature: Stylish underline effect */
#our-team h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #1a73e8;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Grid layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Individual card */
.team-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

/* Subtle hover border animation */
.team-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: border-color 0.4s ease;
}

.team-card:hover::before {
  border-color: #1a73e8;
}

.team-card img {
  width: 100%;
  display: block;
  border-radius: 12px 12px 0 0;
  transition: transform 0.4s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

/* Name */
.team-card h3 {
  font-size: 20px;
  margin: 15px 0 5px;
  color: #333;
  font-weight: 600;
}

/* Role */
.team-card p {
  font-size: 14px;
  color: #666;
  margin: 0 0 10px;
}

/* Social Icons */
.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.team-social img {
  width: 24px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%);
}

.team-social img:hover {
  transform: scale(1.3);
  filter: grayscale(0%);
}

/* Hover effect */
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVENESS
   ========================= */

/* 📱 Mobile (320px – 426px) */
@media screen and (min-width: 320px) and (max-width: 426px) {
  #our-team {
    padding: 40px 10px;
  }

  #our-team h1 {
    font-size: 22px;
  }

  .team-grid {
    grid-template-columns: 1fr; /* single column */
    gap: 20px;
  }

  .team-card {
    padding-bottom: 15px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .team-card>img{
    height: 330px;
    width: 300px;
  }

  .team-social img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
  }

  .team-card h3 {
    font-size: 16px;
  }

  .team-card p {
    font-size: 13px;
  }

  .team-social {
    gap: 8px;
  }

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

/* 📱 Tablet (427px – 789px) */
@media (min-width: 427px) and (max-width: 789px) {
  #our-team h1 {
    font-size: 26px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 20px;
  }

  .team-card h3 {
    font-size: 18px;
  }
  
  .team-card p {
    font-size: 14px;
  }

  .team-social img {
    width: 22px;
 
  }
}




/* TESTIMONIAL */
.testimonial {
  background-color: #becfc1;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.02);
}

/* Image Section */
.testimonial-image img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonial-image img:hover {
  transform: scale(1.05);
}

/* Content Section */
.testimonial-content {
  flex: 1;
}

.testimonial-content h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.quote-icon {
  color: #f5b400;
  font-size: 20px;
  vertical-align: middle;
}

.customer-name {
  font-weight: bold;
  color: #222;
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonial-card {
    gap: 20px;
    padding: 20px;
  }

  .testimonial-image img {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .testimonial-image img {
    width: 200px;
  }

  .testimonial-content h2 {
    font-size: 22px;
  }

  .testimonial-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .testimonial {
    padding: 40px 10px;
  }

  .testimonial-image img {
    width: 180px;
  }
}






/* CONTACT */
.contact {
  padding: 50px 20px;
  background: #fff;
}
.contact1 {
  max-width: 600px;
  margin: auto;
  text-align: center;
}
.contact1 form input, .contact1 form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.contact1 .btn {
  background: darkcyan;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  padding: 10px;
}








/* Footer Container */
#contact {
  background-color: #0d0e0e;
  color: #fff;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-container h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #f5b400;
}

.footer-container p,
.footer-container li {
  font-size: 14px;
  line-height: 1.6;
}

.footer-container ul {
  list-style: none;
  padding: 0;
}

.footer-container ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-container ul li a:hover {
  color: #f5b400;
}

.newsletter {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.newsletter input {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 4px;
}

.newsletter button {
  background: #f5b400;
  border: none;
  padding: 8px 15px;
  color: #000;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s ease;
}

.newsletter button:hover {
  background: #fff;
  color: #000;
}

/* Social Icons */
.social-icons img {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  margin-top: 20px;
  font-size: 13px;
}



/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter button {
    width: 100%;
  }

  .social-icons img {
    margin: 10px;
  }
}
