
body {
    margin: 0;
    font-family: Arial, sans-serif;
    font-family: Arial, sans-serif;
    background-image: url(design-yellow.png);
    background-color: #ffffff;
  }
  h1 {
      font-weight: 800;
      font-size: 55px;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  .phone-m a {
  text-decoration: none;
  color: inherit;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    background-image: url(design-yellow.png);
   background-color: #312903;
    padding: 50px;
    min-height: 100vh;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-left, .hero-right {
    flex: 1;

    min-width: 50%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.hero-left h1 {
    font-size: 3em;
    margin: 0;
    white-space: normal;
    font-weight: bold;
    color: #FFD700;
}
.hero-left p {
    font-size: 1.3em;
    margin-top: 10px;
    max-width: 600px;
}
.typing-text {
    display: block;
    text-align: center;
    max-width: 100%;
    color: #FFD700;
    font-weight: bold;
    margin-top: 44px;
    font-size: 1em;
}
.steps {
    margin-top: 20px;
    text-align: left;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}
.steps h2 {
    font-size: 1.7em;
    margin-bottom: 10px;
    color: white;
}
.steps ul {
    list-style: none;

}
.steps li {
    font-size: 1.3em;
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}
.steps li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1em;
}
.register-btn-yellow {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;

    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    border: 2px solid sandybrown;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}
.register-btn-yellow:hover {
    background: #b99400;
}
.hero-right img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 20px;
        min-height: auto;
        text-align: center;
    }
    .hero-left {
        min-width: 100%;
        flex-direction: column;
    }
    .hero-right {
        min-width: 100%;
        flex-direction: column;
    }
    .hero-left h1 {
        font-size: 2.5em;
    }
    .hero-right img {
        max-width: 100%;
        margin-top: 20px;
    }
    .register-btn-yellow {
      text-align: center;
      width: 100%;
    }
    
}
        .contact-section {
            padding: 50px;
            box-sizing: border-box;
            background-image: url(bg3.webp);
        }
        .contact-section h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }
        .contact-section p {
            font-size: 1.2em;
            margin-bottom: 40px;
        }
        .form-container {
         
            background-color: #d3d3d3;
            padding: 20px;
            border: 2px solid #ccc;
            border-radius: 10px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .form-container input[type="text"],
        .form-container input[type="email"],
        .form-container input[type="tel"],
        .form-container select,
        .form-container input[type="submit"] {
            margin: 10px;
            padding: 15px;
            font-size: 1em;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
            flex: 1 1 0%;
        }
        .form-container input[type="submit"] {
            background-color: #006400;
            color: #fff;
            cursor: pointer;
            border: 2px solid #ccc;
            flex: 1 1 100%;
            transition: background-color 0.3s ease;
        }
        .form-container input[type="submit"]:hover {
            background-color: #228B22;
        }
        @media (max-width: 768px) {
            .contact-section {
                padding: 20px;
            }
            .form-container {
                flex-direction: column;
            }
            .form-container input[type="text"],
            .form-container input[type="email"],
            .form-container input[type="tel"],
            .form-container select,
            .form-container input[type="submit"] {
                flex: 1 1 100%;
            }


            

        .top-bar {
     
        flex-direction: column;
        align-items: flex-start;
        font-size: 0.8em;
      }
      .header {
        flex-direction: row;
        align-items: center;
      }
      .logo {
        margin-bottom: 10px;
      }
      .nav-menu {
        display: none;
        flex-direction: column;
        gap: 20px;
        background-color: #f8f8f8;
        position: absolute;
        top: 120px;
        right: 20px;
        border: 1px solid #ddd;
        padding: 15px;
        width: 80%;
      }
      .nav-menu.active {
        display: flex;
      }
      .register-btn {
        margin-top: 15px;
        text-align: center;
      }
      .menu-toggle {
        display: inline-block;
      
      }
            
      .nav-menu {
        display: flex
    ;
        gap: 20px;
    }
    
   
        .nav-menu {
            display: none;
            flex-direction: column;
            gap: 20px;
            background-color: #f8f8f8;
            position: absolute;
            top: 120px;
            right: 20px;
            border: 1px solid #ddd;
            padding: 15px;
            width: 80%;
        }
    }
        



/* Top Bar Styles */
.top-bar {

 background-image: url(design-yellow.png);
background-color: #220000;
    color: #ffbb00;
    
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
  }
  .top-bar div {
    margin: 0 5px;
  }
  /* Header Styles */
  .header {
    display: flex;
    background-image: url(brown.png);
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
  }
  .logo img {
    width: 80px;
    height: 74px;
  }
  .nav-menu {
    display: flex;
    gap: 20px;
  }
  .nav-menu a {
    color: #333;

    background-color: #f7f7f7;
    font-size: 1em;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s ease;
  }
  .nav-menu a:hover {
    color: #ffa600;
    background-color: #006400;
  }
  .register-btn {
    background-color: #006600;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;

    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .register-btn:hover {
    background-color: #45a049;
  }

  /* Mobile Styles */
  .menu-toggle {
    display: none;
    background-color: #4CAF50;
    color: #fff;
       font-size: 25px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  .menu-toggle:active {
    background-color: #45a049;
  }
  
  @media (max-width: 768px) {
    .top-bar {
    flex-direction: row;
    align-items: flex-start;
    font-size: 0.8em;
  }
  .header {
    flex-direction: row;
    align-items: center;
  }
  .logo {
    margin-bottom: 10px;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 20px;
    background-color: #ffffff;
    position: absolute;

    right: 20px;
    border: 1px solid #ddd;
    padding: 15px;
    width: 80%;
  }
  .nav-menu.active {
    display: flex;
  }
  .register-btn {
    margin-top: 15px;
    text-align: center;
    display: none;
  }
  .menu-toggle {
    display: inline-block;
  
  }
}



.about {
    display: flex;
    flex-wrap: wrap;
    background-color: #f1f1f1;
    color: #444343;
    padding: 50px;
    box-sizing: border-box;
    min-height: 100vh;
}
.about-left, .about-right {
    flex: 1;
    min-width: 50%;
    box-sizing: border-box;
}
.about-left img {
    width: 100%;
    height: auto;
}
.about-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.about-right p {
    font-size: 1.2em;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .about {
        flex-direction: column;
        padding: 20px;
        min-height: auto;
    }
    .about-left, .about-right {
        min-width: 100%;
    }
    .about-right {
        text-align: center;
    }
  
  .h-shadow {
    width: 100%;
    height: auto;
    margin-top: -8px;
  }
  img {
    width: 100%;
    height: auto;
  }
}
.h-shadow {
  width: 100%;
  height: auto;
}
img {
  width: 100%;
  height: auto;
}

.about-section {
  background-image: url(design.png);
 
  color: rgb(48, 48, 48);
  padding: 10px 20px;
  text-align: center;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  
}
.about-section h1 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.about-section p {
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: start;
  font-weight: 400;
}
.content-box {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.content-box:hover {
  box-shadow: 0px 12px 50px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
.nav-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.nav-tabs button {
  background-color: #ffffff;
  border: 2px solid #00bcd4;
  color: #00bcd4;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 20px;
  width: 33%;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-tabs button:hover {
  background-color: #00bcd4;
  color: white;
}
.nav-tabs button.active {
  background-color: #00bcd4;
  color: white;
}
.tab-content {
  display: none;
  padding: 20px;
  border-radius: 10px;
  background-color: #fafafa;
  margin-top: 20px;
  line-height: 2;
}
.tab-content.active {
  display: block;
}
.tab-content ul {
  list-style-type: none;
  padding-left: 0;
}
.tab-content li {
  padding: 8px 0;
  font-size: 1rem;
}
.btn-dark {
  background-color: #ff5722;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}
.btn-dark:hover {
  background-color: #e64a19;
}
.about-container {
  margin-top: 50px;
}
.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
      padding: 20px;
  }
  .nav-tabs {
      flex-direction: column;
  }
  .nav-tabs button {
      width: 100%;
      margin-bottom: 10px;
      font-size: 16px;
  }
  .about-section h1 {
      font-size: 2.5rem;
  }
  .about-container .row {
      flex-direction: column-reverse;
  }
  .content-box {

      padding: 20px;
  }
  .about-image {
      width: 100%;
  }
}
@media (max-width: 480px) {
  .about-section h1 {
      font-size: 2rem;
  }
}




.courses-section {
  max-width: 100%;
  background-image: url(brown.png);
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 50px;
  background-color: #eeeeee;
  text-align: center;
}
.course-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
 
}
        .course-box {
            width: calc(45% - 20px);
            
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            cursor: pointer;
           
        }
        .course-box:hover {
            background: #00851d;
            color: white;
            transform: scale(1.05);
        }
        h2 {
            color: #333;
            font-size: 45px;
        }
        @media (max-width: 768px) {
            .course-box {
                width: 100%;
            }
        }

        
.section-intro {
  display: flex;
  gap: 20px;
  background: rgb(255, 255, 255);
  color: rgb(51, 51, 51);
  padding: 40px;

  flex-wrap: wrap;
}
.intro-section h2 {
  margin-top: 50px;
  font-size: 44px;
}

/* Image Container */
.image-intro {
  width: 33%;
  flex-shrink: 0;
}

.image-intro img {
  width: 100%;
  border-radius: 5%;
  object-fit: cover;
}

/* Article Container */
.article-intro {
  width: 64%;
}

.article-intro h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #413a00;
}

.article-intro p {
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 16px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}
.course {
  width: 45%;
  margin: 10px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s;
  color: #fff;
}
.course:hover {
  transform: scale(1.05);
}
.course-details {
  display: none;
  text-align: left;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px;
  border-radius: 10px;
  color: #000;
}
.course-1 { background: linear-gradient(135deg, #ff7e5f, #feb47b); }
.course-2 { background: linear-gradient(135deg, #86A8E7, #91EAE4); }
.course-3 { background: linear-gradient(135deg, #FFDEE9, #B5FFFC); }
.course-4 { background: linear-gradient(135deg, #F4D03F, #16A085); }
.course-5 { background: linear-gradient(135deg, #76b852, #8DC26F); }
.course-6 { background: linear-gradient(135deg, #ff6a00, #ee0979); }
@media (max-width: 768px) {
  .course {
      width: 100%;
  }
}
@media (max-width: 480px) {
  .course {
      width: 100%;
      margin: 5px;
      padding: 15px;
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .section-live {
      flex-direction: column;
      align-items: center;
  }

  .image-intro, 
  .article-intro {
      width: 100%;
      text-align: center;
  }
}


.three-column-section {
  background-color: #ffffff;
  padding: 50px 20px;
  margin-top: 40px;
}

.three-column-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #00bcd4;
  font-weight: bold;
}

.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.column {
  background-color: #ff9800;
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 280px;
  transition: all 0.3s ease;
}

.column:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2);
}

.column h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
}

.column p {
  font-size: 1rem;
  color: #f7f7f7;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .three-column-section {
      padding: 30px 20px;
  }
  .row {
      flex-direction: column;
      gap: 20px;


  }
  .three-column-section h2 {
      font-size: 2rem;
  }
}
.card {
  margin-bottom: 20px;
}
.card {
  position: relative;
  display: -ms-flexbox;
  display: flex
;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, .125);
  border-radius: .25rem;
}
*, ::after, ::before {
  box-sizing: border-box;
}
.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}
.card-header:first-child {
  border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}

.card-header {
  padding: .75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, .03);
  border-bottom: 1px solid rgba(0, 0, 0, .125);
}




/* Features Section */
  .features-section {
    background-color: #290000;
    background-image: url(design-yellow.png);
 
    padding: 50px 265px
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: center;
  }
  .feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
  }
  .feature-item:hover {
    transform: translateY(-5px);
  }
  .feature-icon {
    font-size: 60px;
    color: #017e50;
    margin-right: 15px;
  }
  .feature-content {
    color: #333;
  }

  .feature-content h2 {
    font-size: 1.8em;
    color: #795548;
    margin-bottom: 8px;
  }  .feature-content h3 {
    font-size: 1.1em;
    color: #795548;
    margin-bottom: 8px;
  }
  .feature-content p {
    font-size: 0.95em;
    color: #666;
  }
  .section-heading{

margin-bottom: 55px;

  }
  .section-heading h2 {
    font-size: 55px;
    font-weight: 900;
    color: white;
    text-align: center;
      }
@media (max-width: 768px) {
  .features-section {
      grid-template-columns: 1fr;
  
      background-image: url(design-yellow.png);
 
      padding: 50px 50px
  }
  .section-heading h2 {
    font-size: 29px;
    font-weight: 900;
   
    font-family: "Raleway", sans-serif;

   
    
      }
  
}

        
.container {
    text-align: center;
    max-width: 100%;
   
    background-image: url(design.png);


    background-repeat: repeat;

    background-position: center;
    
}

.title {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 45px;
}
.arabic-course {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 3px 2px 3px  rgb(0, 0, 0);;
  text-align: center;
  text-shadow: #000;
  margin-top: -60px;
  z-index: 800;
}



.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 90px;
    justify-content: center;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 41%;
    text-align: left;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.plan-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 10px;
    color: #222;
}

.price {
    font-size: 3.5rem;
    color: #555;
    margin-top: 5px;
}

.features {
    margin-top: 15px;
    list-style: none;
}

.features li {
    margin-bottom: 8px;
    color: #444;
}

.features li::before {
    content: "✔";
    color: green;
    margin-right: 8px;
}

.btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-green {
    background: #28a745;
    color: white;
}

.btn-green:hover {
    background: #218838;
}

.btn-blue {
    background: #007bff;
    color: white;
}

.btn-blue:hover {
    background: #0056b3;
}

.btn-purple {
    background: #6f42c1;
    color: white;
}

.btn-purple:hover {
    background: #563d7c;
}

@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
     
      padding: 20px;
    
      width: 100%;
    
  }
}

.review-section {
  padding: 50px;
  background-image: url(brown.png);
  text-align: center;
margin-top: 50px;
margin-bottom: 35px;
  position: relative;
  overflow: hidden;

}

.review-section h2 {
  font-size: 32px;
  background-image: url();
  color: #2c3e50;
  margin-bottom: 30px;

  margin-bottom:  120px;
}

/* Carousel Container */
.review-carousel {
  overflow: hidden;
 
  width: 100%;
}

.review-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}

/* Review Card */
.review-card {
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 100px 100px 0px 80px;
  padding: 20px;
  width: 30%;
  box-sizing: border-box;
  flex-shrink: 0;
}

.review-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.review-card h4 {
  margin-top: 10px;
  color: #3498db;
  font-weight: bold;
}

/* Navigation Buttons */
.prev-btn, .next-btn {
  background: #3498db;
  color: white;
  border: none;

  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  position: absolute;
  top: 66%;
  transform: translateY(-50%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* Responsive Design */
@media (max-width: 800px) {
  .review-card {
      width: 45%;
  }
}

@media (max-width: 500px) {
  .review-card {
      width: 100%;
  }
}
.section-live {
  display: flex;
  gap: 20px;
  background: darkgreen;
  color: white;
  padding: 40px;

  flex-wrap: wrap;
}

/* Image Container */
.image-container {
  width: 33%;
  flex-shrink: 0;
}

.image-container img {
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: orange 10px solid;
  transition: border 0.3s ease; /* Smooth effect */
}

.image-container:hover img {
  border: red 10px solid; /* Changes color on hover */
}

/* Article Container */
.article-container {
  width: 64%;
}

.article-container h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ffeb3b;
}

.article-container p {
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .section-live {
      flex-direction: column;
      align-items: center;
  }

  .image-container, 
  .article-container {
      width: 100%;
      text-align: center;
  }
}


.contact-form-section- {
    max-width: 1250px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;

    border-radius: 10px;
}

.contact-form-section h2 {
    font-size: 42px;
    color: #2c3e50;
    text-align: center;
}

.contact-form-section p {
    font-size: 18px;
    text-align: center;
    color: #777;
    margin-bottom: 30px;
}

.contact-form-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-form-details, .contact-form {

    min-width: 600px;
    border: #ececec solid 3px;
    padding: 25px;
    border-radius: 10px;
    
}

.contact-form-details h3 {
    color: #3498db;
    margin-bottom: 20px;
    text-align: center;
    font-size: 40px;
}

.contact-form-details p {
    font-size: 16px;
    color: #555;
    line-height: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    background: #f9f9f9;
}

.contact-form input[type="radio"] {
    margin-right: 10px;
}

.contact-form textarea {
    resize: vertical;
    height: 100px;
}

.contact-form button {
    background: #3498db;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #2980b9;
}

@media (max-width: 800px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-form-details, .contact-form {

      min-width: 90%;
      border: #ececec solid 3px;
      padding: 25px;
      border-radius: 10px;
      
  }
}

.whatsapp-button {
    position: fixed;
    bottom: 100px;
    right: 50px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex
;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Footer Styles */
.footer {
  background: #2c3e50;
  color: #ffffff;
  padding: 40px 20px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  font-size: 20px;
  color: #f39c12;
  margin-bottom: 20px;
}

.footer-column p {
  line-height: 1.8;
  font-size: 14px;
  color: #dcdcdc;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #dcdcdc;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #f39c12;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 30px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: #dcdcdc;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 800px) {
  .footer-container {
      flex-direction: column;
  }
}

   /* Breadcrumb Section Styles */
        .breadcrumb-section {
            width: 100%;
            background: #5a3d2b; /* Dark Brown */
            color: #ffffff;
            padding: 25px 0;
            text-align: center;
        }

        .breadcrumb-container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

        .breadcrumb-section h1 {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 8px;
            color: #f39c12; /* Orange */
        }

        .breadcrumb {
            font-size: 16px;
            color: #ffffff;
        }

        .breadcrumb a {
            color: #f39c12; /* Orange */
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: #ffc107; /* Lighter Orange */
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .breadcrumb-section h1 {
                font-size: 24px;
            }
            .breadcrumb {
                font-size: 14px;
            }
        }





    /* Fixed WhatsApp Button */
    
    

    /* Fixed WhatsApp Button */
    .whatsapp-button {
      /* position: fixed; */
      bottom: 100px;

      background-color: #25D366;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .whatsapp-button:hover {
      transform: scale(1.1);
      box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    }

    .whatsapp-button svg {
      fill: white;
      width: 30px;
      height: 30px;
    }

    /* Tooltip */
    .whatsapp-tooltip {
      position: absolute;
      bottom: 70px;
      right: 0;
      background-color: #333;
      color: white;
      padding: 8px 12px;
      border-radius: 5px;
      font-size: 12px;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
      white-space: nowrap;
    }

    .whatsapp-button:hover .whatsapp-tooltip {
      opacity: 1;
      transform: translateY(0);
    }