* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fff;
    color: #333;
}



.topbar a {
    color: #fff;
    text-decoration: none;
    /* margin-left: 10px; */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

nav .logo {
    font-size: 22px;
    font-weight: bold;
    color: #007bff;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.btn-quote {
    font-size: 15px;
    background: linear-gradient(to right, #0091CC, #0A407E);

    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
}

/* home Section */
.home {
    background: url('./images/home-bg.png'), linear-gradient(to right, #007bff, #00b4ff);
    background-size: cover;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 120px 0px 120px;
    color: #fff;
}

.home-text {
    max-width: 50%;
}



.home-text p {
    line-height: 1.5rem;
    font-size: 16px;
    margin-bottom: 20px;
}

.home-text .btn {
    background: linear-gradient(to right, #0091CC, #0A407E);

    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #93d3ed;
}


/* About Section */


.about img {
  z-index: 10;
  position: relative;
    max-width: 500px;
    border-radius: 12px;
}

.about-text {
    max-width: 500px;
}



.div-container p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.div-btn {
    background: linear-gradient(to right, #0091CC, #0A407E);

    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #93d3ed;
}

.about {
    display: flex;
    align-items: center;
}

/* Responsive */
@media(max-width: 900px) {
    .home {
      padding: 50px 15px 0px 15px !important;
        flex-direction: column;
        text-align: center;
    }

    .home-text {
        max-width: 100%;
    }



    .about img {
        max-width: 100%;
    }
}


/* Services Section */




.services .subtitle {
    color: #666;
    margin-bottom: 40px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

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

.card h3 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
}

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

/* Why Choose Us Section */
.why-choose {
    gap: 50px;
    display: flex;
    align-items: center;

}



.why-text {
    flex: 1;
}



.div-container h6,
.side-container h6 {
    color: #777;
    margin-bottom: 20px;
}

.side-container ul {
    font-weight: 600;
    list-style: none;
    padding: 0;
}

.side-container li {
    font-size: 16px;
    margin-bottom: 12px;
}

/* Responsive */
@media(max-width: 900px) {
    .why-choose {
        flex-direction: column;
        text-align: left;
    }

    .side-container {
        text-align: left;
    }
}


.testimonial-left {
    flex: 1;
}



.testimonial-left p.subtext {
    color: #888;
    margin-bottom: 30px;
}

.testimonial-left .main-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
}

.testimonial-left img {
    object-fit: cover;
    height: 150px;
    width: 100%;
    border-radius: 15px;
}

.testimonial-right {
    flex: 2;
    position: relative;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}

.testimonial-card.active {
    display: block;
}

.testimonial-card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.testimonial-card span {
    font-size: 14px;
    color: #777;
}


.testimonial-controls {
    text-align: center;
    margin-top: 20px;
}

.testimonial-controls button {
    background: none;
    border: 1px solid #333;
    border-radius: 50%;
    padding: 5px 10px;
    margin: 0 5px;
    cursor: pointer;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1.3fr 1fr 1fr 1fr;
    gap: 20px;
}

/* Left section */
.footer-logo h2 {
    color: #0d8ddc;
    margin: 0 0 10px;
    font-weight: 700;
}

.footer-logo p {
    font-size: 14px;
    color: #939595;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-social a {
    margin-right: 12px;
    color: #939595;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #0d8ddc;
}

/* Headings */
.footer-column h3 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-column ul {
    /* list-style: none; */
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.list-none {
    list-style: none;

}

.footer-column ul li a {
    text-decoration: none;
    color: #939595;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #0d8ddc;
}

/* Bottom bar */
.footer-bottom {
    background: #0088BF;
    color: #fff;
    padding: 12px 60px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
.nav-item{
  transition: color 0.3s;

    }
.nav-item li a:hover::after {
  width: 100%;
}
.nav-item li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #aa8453;
  transition: width 0.3s ease;
}
.navbar-toggler{
  width:30px;height:32px;padding:0;border:0;background:none;
  position:relative;
}
.nav-item.dropdown > .dropdown-toggle{
  display:inline-flex;         
  align-items:center;          
  gap:.25rem;                  
}
.navbar-toggler-icon{display:none;}


.navbar-toggler span,
.navbar-toggler::before,
.navbar-toggler::after{
  content:'';
  position:absolute;
  left:0;right:0;
  height:3px;
  background:#000;
  border-radius:2px;
  transition:.3s ease;
}
.navbar-toggler span{top:50%;transform:translateY(-50%);}
.navbar-toggler::before{top:7px;}
.navbar-toggler::after{bottom:7px;}

.navbar-toggler[aria-expanded="true"]::before{
  top:50%;transform:translateY(-50%) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"]::after{
  bottom:50%;transform:translateY(50%) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] span{opacity:0;}


@media(max-width: 767px) {
  .nav-item  li {
    padding: 5px 0 !important;
  }
  .nav-item{
    margin-bottom: 15px;
    padding-left: 0;
  }
  .navbar {
    padding: 20px 30px;
  }
  
nav ul {
  margin: 0;
  list-style: none;
  /* display: flex; */
}
.div-container {
  padding: 30px 20px;
}

.navs {
  gap: 10px;
  /* display: flex; */
  align-items: center;
}

.div-container h2 {
  font-size: 25px;
  font-weight: 700;
}

.side-container h2 {
  font-size: 25px;
  font-weight: 700;

}

.side-container {
  padding: 30px 20px;
}
.topbar {
  background: #007bff;
  color: #fff;
  font-size: 14px;
  padding: 8px 10px;
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
}
.side-container ul {
  text-align: left;}
.home img {
  max-width: 300px;
  border-radius: 10px;
}
.home-text h1 {
font-size: 30px;
margin-bottom: 15px;
}
.side-container img {
  height: 150px;
  width: 100%;
  border-radius: 0px;
}
.testimonial-section {


  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.justify{
  justify-content: center;
  display: flex;
}
footer {
  /* text-align: left; */
  background: #fff;
  padding: 40px 30px 20px;
  color: #939595;
}
.footer-column ul {
  list-style: none;}
}
@media(min-width: 768px) and (max-width: 900px)  {
  .home img {
    max-width: 550px;
    border-radius: 10px;
}
.home-text h1 {
  font-size: 38px;
  margin-bottom: 15px;
}
  .topbar {
    background: #007bff;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  .navbar {
    padding: 20px 30px;
  }
nav ul {
  margin: 0;
  list-style: none;
  display: flex;
}
.div-container {
  padding: 50px 120px;
}

.navs {
  gap: 10px;
  display: flex;
  align-items: center;
}

.div-container h2 {
  font-size: 35px;
  font-weight: 700;
}

.side-container h2 {
  font-size: 35px;
  font-weight: 700;

}

.side-container {
  padding: 50px 120px 50px 0px;
}

.side-container img {
  height: 350px;
  width: 700px;
  border-radius: 0px;
}
.testimonial-section {


  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
footer {
  background: #fff;
  padding: 40px 60px 20px;
  color: #939595;
}

}
@media (min-width: 901px) {
  .topbar {
    background: #007bff;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  .navbar {
    padding: 20px 50px;
  }
 
nav ul {
  margin: 0;
  list-style: none;
  display: flex;
}
.div-container {
  padding: 50px 120px;
}

.navs {
  justify-content: flex-end;
  gap: 10px;
  display: flex;
  align-items: center;
}

.div-container h2 {
  font-size: 35px;
  font-weight: 700;
}

.side-container h2 {
  font-size: 35px;
  font-weight: 700;

}

.side-container {
  padding: 50px 120px 50px 0px;
}
.home img {
  max-width: 550px;
  border-radius: 10px;
}
.home-text h1 {
font-size: 38px;
margin-bottom: 15px;
}
.side-container img {
  height: 350px;
  width: 700px;
  border-radius: 0px;
}
.testimonial-section {


  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
footer {
  background: #fff;
  padding: 40px 60px 20px;
  color: #939595;
}

}
.glaze-btn {
  position: relative;
  overflow: hidden;
 
 
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease-in-out;
}

.glaze-btn:hover {
  transform: translateY(-3px);
}

/* Glazing effect */
.glaze-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-20deg);
}

.glaze-btn:hover::before {
  animation: glaze 0.8s forwards;
}

@keyframes glaze {
  from {
    left: -75%;
  }
  to {
    left: 125%;
  }
}