    /* Reset & Box Sizing */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;

    }
    body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        
	
    font-size: 16px;
    line-height: 1.6;
    color: #333; /* Dark gray for readability */
  
	}
    .container {
      width: 99%;
      max-width: 1200px;
      margin: 0 auto;
    }
	
	
	/* Top Bar */
    .top-bar {
      background-color:#003300;
      color: #fff;
      padding: 10px 0;
      font-size: 14px;
	 
    }
    .top-bar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .top-bar .contact-info span {
      margin-right: 15px;
    }
    .top-bar .social-icons a {
      color: #fff;
      margin-left: 10px;
      text-decoration: none;
    }
    
	/* Navigation Bar */
    .navbar {
      background: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .navbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      position: relative;
      width: 100%;
    }
    .logo a {
      text-decoration: none;
      font-size: 24px;
      font-weight: bold;
      color: #001f3f;
    }
    .nav-menu {
      list-style: none;
      display: flex;
      margin: 0;
    }
    .nav-menu li {
      position: relative;
    }
    .nav-menu li a {
      text-decoration: none;
      color: #001f3f;
      padding: 10px 15px;
      display: block;
    }
    .nav-menu li:hover > a {
      background-color:#003300;
	  color:#FFFFFF
    }
    /* Dropdown Menu */
    .dropdown-menu {
      display: none;
      position: absolute;
      background-color: #fff;
      min-width: 300px;
      top: 100%;
      left: 0;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      z-index: 1000;
	  text-decoration: none;
	 
	
	  
    }
    .dropdown:hover .dropdown-menu {
      display: block;
	  list-style: none;
	 
	}
    .dropdown-menu li a {
      padding: 10px;
	  
    }
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
    }
    
	
	/* Hero Section */
    .hero {
      position: relative;
      height: 500px;
      border-bottom-right-radius: 50px;
	  overflow: hidden;
    }
    .slider {
      height: 100%;
      position: relative;
    }
    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }
    .slide.active {
      opacity: 1;
    }
    .slide-content {
      position: absolute;
      bottom: 50px;
      left: 50px;
      color: #fff;
      background: rgba(0, 0, 0, 0.5);
      padding: 20px;
      border-radius: 5px;
    }
    .slide-content h2 {
      font-size: 36px;
      margin-bottom: 10px;
    }
    .slide-content p {
      font-size: 18px;
    }
    /* Slider Navigation Arrows */
    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      border-radius: 50%;
    }
    .slider-nav.prev {
      left: 20px;
    }
    .slider-nav.next {
      right: 20px;
    }
    /* Animation Keyframes */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
	
	/* Services Section with Animation */
    .services-section {
      padding: 60px 0;
    }
    .services-section h2 {
      font-size: 32px;
      text-align: center;
      color: #001f3f;
      margin-bottom: 40px;
    }
    .services-gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .service-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      width: 350px;
      text-align: center;
      position: relative;
      animation: fadeInUp 1s ease-out;
    }
    .service-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }
    .service-card h3 {
      font-size: 24px;
      color: #001f3f;
      margin: 15px 0 10px;
    }
    .service-card p {
      font-size: 16px;
      color: #555;
      padding: 0 15px 15px;
    }
    .service-number {
      position: absolute;
      top: 5px;
      left: 5px;
      background-color: #006600;
      color: #fff;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 12px;
      z-index: 5;
    }
 
 /* Introduction Section */
    .intro-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      padding: 4rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

   	 .intro h1  ,h3{ color:#000000;}
	.intro-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .intro-image {
      position: relative;
      height: 100%;
    }

    .intro-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .intro-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
      }

      .hero-content h1 {
        font-size: 2.5rem;
      }

      .intro-image {
        height: 400px;
      }
    }

    .cardS-container {
        display: flex;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        flex-wrap: wrap;
    }

    .serviceS-card {
        width: 300px;
        padding: 2rem;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        flex-shrink: 0; /* Add this */
    }

    
    /* Keep your existing icon and text styles */
    .iconS-container {
        width: 80px;
        height: 80px;
        background: #f0f7ff;
        border-radius: 50%;
        margin: 0 auto 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: #2563eb;
    }

    .cardS-title {
        font-size: 1.0rem;
        margin-bottom: 1rem;
        color: #1e293b;
    }

    .cardS-description {
        color: #64748b;
        line-height: 1.6;
        font-size: 1rem;
    }
    
	   /* Slider Container */
    .sliderS-container {
        position: relative;
        max-width: 90%;
        margin: 2rem auto;
        padding: 0 2rem;
        overflow: hidden;
    }

    /* Slider Track */
    .sliderS-track {
        display: flex;
        gap: 2rem;
        transition: transform 0.5s ease;
        cursor: grab;
    }



		/*Testminials */
        .testimonials-section {
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-heading h2 {
            font-size: 36px;
            color: #2d3436;
        }

        .carousel-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-item {
            flex: 0 0 33.33%;
            padding: 10px;
            box-sizing: border-box;
        }

        .testimonial-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            height: 100%;
        }

        .testimonial-text {
            font-size: 16px;
            color: #444;
            line-height: 1.6;
            margin-bottom: 20px;
            position: relative;
        }

        .testimonial-text::before {
            content: '"';
            font-size: 40px;
            color: #e74c3c;
            position: absolute;
            left: -10px;
            top: -15px;
            opacity: 0.3;
        }

        .client-info {
            display: flex;
            align-items: center;
        }

        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
			
        }

        .service-text::before {
           
            font-size: 40px;
            color: #e74c3c;
            position: absolute;
            left: -10px;
            top: -15px;
            opacity: 0.3;
        }

.service-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    /* Center alignment */
    display: block;
    margin: 0 auto 15px;
	background:#F4F4F4;
}

        .client-details h4 {
            font-size: 18px;
            color: #2d3436;
            margin-bottom: 5px;
        }

        .client-details p {
            font-size: 14px;
            color: #636e72;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            z-index: 10;
        }

        .carousel-nav:hover {
            background: #fff;
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }

        @media (min-width: 1200px) {
            .testimonial-item {
                flex: 0 0 20%;
            }
        }

        @media (max-width: 992px) {
            .testimonial-item {
                flex: 0 0 50%;
            }
        }

        @media (max-width: 576px) {
            .testimonial-item {
                flex: 0 0 100%;
            }
        }
		
		
/* Project Gallery Slider Styles */



        /* Form Section Styles */
        .form-section {
            background-image: url('img/carousel-1_.jpg');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
        }

        /* Overlay */
        .form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
        }

        /* Form Container */
        .form-container {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        /* Form Title */
        .form-title {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        /* Form Group Styling */
        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: 500;
        }

        input,
        select,
        textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #27ae60;
            box-shadow: 0 0 5px rgba(39, 174, 96, 0.2);
        }

        /* Service Type Dropdown */
        select {
            appearance: none;
            background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 1rem center/1rem;
        }

        /* Submit Button */
        .submit-btn {
            background: #27ae60;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s ease;
        }

        .submit-btn:hover {
            background: #219a52;
        }

        /* Responsive Design */
        @media (max-width: 480px) {
            .form-container {
                padding: 1.5rem;
            }
            
            .form-title {
                font-size: 1.5rem;
            }
        }
		
		
		 /* Blog Section Styles */
        .blogs-section {
            padding: 4rem 2rem;
            background-color: #f8f9fa;
        }

        .blogs-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        /* Blog Card Styling */
        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .card-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .card-content {
            padding: 1.5rem;
            flex: 1;
        }

        .card-title {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: #2d3436;
        }

        .card-description {
            color: #636e72;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
	.card-button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color:#004040;/*#27ae60*/
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0 auto 1.5rem; /* Centered with auto margins */
    text-align: center;
    width: auto; /* Remove any fixed width */
	
	
}

        .card-button:hover {
            background-color: #219a52;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .blogs-container {
                grid-template-columns: 1fr;
            }
        }
 .contact-section {
            background-color: #f8f9fa;
            padding: 60px 20px;
            text-align: center;
        }

        .section-heading {
            font-size: 32px;
            color: #2d3436;
            margin-bottom: 20px;
        }

        .subheading {
            color: #636e72;
            margin-bottom: 40px;
            font-size: 18px;
        }

        .contact-cards {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .contact-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 300px;
        }

        .card-title {
            font-size: 20px;
            color: #2d3436;
            margin-bottom: 15px;
        }

        .card-description {
            color: #636e72;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .contact-button {
            display: inline-block;
            padding: 12px 25px;
            background-color: #27ae60;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            font-weight: 500;
        }

        .contact-button:hover {
            background-color: #219a52;
        }

        

        .highlight {
            color: #2d3436;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .contact-cards {
                flex-direction: column;
                align-items: center;
            }
        }

    
	/* Footer */
    .footer {
      background-color: #001f3f;
      color: #fff;
      text-align: center;
      padding: 20px 0;
    }
    /* Responsive Styles */
    @media (max-width: 768px) {
      .navbar .container {
        flex-direction: column;
        align-items: flex-start;
      }
      .nav-menu {
        flex-direction: column;
        width: 100%;
        display: none;
      }
      .nav-menu.active {
        display: block;
        margin-top: 15px;
      }
      .nav-menu li {
        width: 100%;
      }
      .nav-menu li a {
        padding: 10px;
        border-top: 1px solid #f4f4f4;
      }
      .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
      }
      .slide-content {
        left: 20px;
        bottom: 20px;
      }
      .slide-content h2 {
        font-size: 28px;
      }
      .slide-content p {
        font-size: 16px;
      }
      .slider-nav {
        width: 30px;
        height: 30px;
      }
      .services-gallery {
        flex-direction: column;
        align-items: center;
      }
      .welcome-card {
        flex-direction: column;
        text-align: center;
      }
      .welcome-image {
        max-width: 100%;
      }
    }
	
/* Responsive Styles */
@media (max-width: 768px) {
  .about-testimonial-row {
    flex-direction: column;
  }

}


.specializationS-section {
    padding: 80px 20px;
    background: #FCFCFC;
}

.containerS {
    max-width: 1200px;
    margin: 0 auto;
}

.sectionS-heading {
    text-align: center;
    margin-bottom: 60px;
}

.sectionS-heading h1 {
    font-size: 2.5rem;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.servicesS-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.serviceS-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.serviceS-card:hover {
    transform: translateY(-10px);
}

.serviceS-icon {
    font-size: 2.5rem;
    color: #1a6d3f;
    margin-bottom: 20px;
	
}

.serviceS-card h2 {
    color: #2a2a2a;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.serviceS-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .specializationS-section {
        padding: 60px 15px;
    }
    
    .containerS {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .servicesS-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .serviceS-card {
        width: 100%;
        margin: 0;
        padding: 30px 20px;
    }
    
    .sectionS-heading h1 {
        font-size: 2rem;
    }
}







        .containerMona {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .heroMona {
            text-align: center;
            margin-bottom: 60px;
            opacity: 1;
            transform: translateY(20px);
            transition: all 0.8s ease-out;
        }

        .heroMona.active {
            opacity: 1;
            transform: translateY(0);
        }

        h1 {
            font-size: 2.5rem;
            color: #2c5f2d;
            margin-bottom: 20px;
        }

        .sliderMona-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .sliderMona-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .featureMona-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            min-width: 300px;
            margin: 0 15px;
            flex-shrink: 0;
            opacity: 0.9;
            transform: scale(0.9);
            transition: all 0.5s ease-in-out;
        }

        .featureMona-card.active {
            opacity: 1;
            transform: scale(1);
        }

        .featureMona-card h3 {
            color: #2c5f2d;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .featureMona-card p {
            color: #666;
            line-height: 1.6;
        }

        .sliderMona-nav {
            text-align: center;
            margin-top: 20px;
        }

        .sliderMona-nav button {
            background: #2c5f2d;
            color: white;
            border: none;
            padding: 10px 20px;
            margin: 0 5px;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .sliderMona-nav button:hover {
            background: #1e401f;
        }

     /* silder gallory*/
	 
	 
	 
	 