/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

img {
    max-width: 100%;
    display: block;
}

header {
    background-color: #a68b38;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    max-width: 150px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
}

nav {
    background-color: #9d7600;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 10px 20px;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

button{
    font-weight: 600;
    background-color: #e7e7e7; 
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 4px;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #f3f3f3;
}

.hero-text {
    flex: 1;
    padding: 20px;
}

.hero-image {
    flex: 1;
    padding: 20px;
}

.whatsapp-main {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;

}
.whatsapp-img {
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 50%;
}

@media only screen and (max-width:768px){
    .whatsapp-main{
        left: 80%;
        bottom: 10px;
        width: 10%;
    }

    .whatsapp-img{
        width: 100%;
        height: 100%;
    }
}
@media only screen and (max-width:572px){
    .whatsapp-main{
        left: 80%;
        bottom: 10px;
        width: 18%;
    }
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
    }

    nav.active {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* About Section */
.about-coo {
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.about-img {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.about-img img {
    max-width: 100%;
    border-radius: 8px;
}

.about-text {
    flex: 2;
    padding: 20px;
}

.about-text h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-featur ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.about-featur ul li {
    width: 50%;
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
}

.about-featur ul li span {
    color: #4caf50;
    font-size: 1.2rem;
    margin-right: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .row {
        flex-direction: column;
    }
    
    .about-text, .about-img {
        flex: 1 0 100%;
    }
}

/* Section Styling */
.services {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.section-title p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #666;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-item {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.service-item img {
  max-width: 80px;
  margin-bottom: 15px;
}

.service-item h4 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 1rem;
  color: #555;
}

/*--address--*/
.header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    color: #333;
}

h2 {
    font-size: 1.5em;
    color: #555;
}

.col {
    flex: 0 0 48%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-radius: 8px;
}

p {
    line-height: 1.6;
}

@media (max-width: 768px) {
    .col {
        flex: 0 0 100%;
    }
}

/*whatsapp form floating */
  #whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 300px;
    z-index: 1000;
    animation: fadeInUp 0.4s ease;
  }

  @keyframes fadeInUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  #whatsapp-header {
    background: #25D366;
    color: white;
    padding: 12px;
    font-weight: bold;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
  }

  #whatsapp-form {
    padding: 16px;
  }

  #whatsapp-form input,
  #whatsapp-form select,
  #whatsapp-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
  }

  #whatsapp-form button {
    background-color: #25D366;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
  }

  .minimize-btn, .close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    margin-left: 8px;
    cursor: pointer;
  }

  @keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }

  #whatsapp-reopen {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    padding: 10px 14px;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 999;
    animation: pulse 2s infinite;
  }