
        :root {
            --deepGreen: #0F5132;
            --leafGreen: #198754;
            --pearlWhite: #F8F9FA;
            --cashewBeige: #E9D8A6;
            --charcoalGray: #343A40;
            --lightGray: #E9ECEF;
            --darkGreen: #0A3A23;
            --gradientGreen: linear-gradient(135deg, var(--deepGreen) 0%, var(--leafGreen) 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--pearlWhite);
            color: var(--charcoalGray);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--lightGray);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--leafGreen);
            border-radius: 5px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        header.scrolled {
            padding: 5px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .logo:hover {
            transform: translateY(-2px);
        }
        
        .logo-icon {
            background: var(--gradientGreen);
            color: var(--pearlWhite);
            width: 120px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(15, 81, 50, 0.3);
            transition: all 0.3s ease;
        }
        
        .logo-text {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--deepGreen);
            transition: all 0.3s ease;
        }
        
        .logo-text span {
            color: var(--leafGreen);
        }
        
        /* Navigation */
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-link {
            position: relative;
            color: var(--deepGreen);
            font-weight: 500;
            text-decoration: none;
            padding: 5px 0;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--leafGreen);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradientGreen);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .cta-button {
            background: var(--gradientGreen);
            color: white;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(15, 81, 50, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 25px rgba(15, 81, 50, 0.4);
        }
        
        .cta-button i {
            transition: transform 0.3s ease;
        }
        
        .cta-button:hover i {
            transform: translateX(3px);
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--deepGreen);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background-color: white;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            padding: 80px 30px;
            display: flex;
            flex-direction: column;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu .nav-link {
            padding: 12px 0;
            font-size: 1.1rem;
            border-bottom: 1px solid var(--lightGray);
        }
        
        .mobile-menu .cta-button {
            margin-top: 20px;
            justify-content: center;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Hero Section */
          .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }
        
         /*.hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(15, 81, 50, 0.9), rgba(15, 81, 50, 0.9));
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -1;
        }*/
		
		.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 81, 50, 0.4), rgba(15, 81, 50, 0.4)),
                url('your-image.jpg'); /* Apna banner image yaha lagao */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}


        .hero-content {
            max-width: 700px;
            color: white;
			
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 8px 8px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-primary {
            background-color: var(--leafGreen);
            color: white;
            box-shadow: 0 4px 15px rgba(25, 135, 84, 0.4);
        }
        
        .btn-primary:hover {
            background-color: var(--darkGreen);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(25, 135, 84, 0.5);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--cashewBeige);
            color: var(--cashewBeige);
        }
        
        .btn-outline:hover {
            background-color: var(--cashewBeige);
            color: var(--deepGreen);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(233, 216, 166, 0.3);
        }
        
        .hero-image {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 45%;
            max-width: 600px;
            z-index: -1;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        /* Services Section */
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--deepGreen);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradientGreen);
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            color: #666;
            max-width: 700px;
            margin: 0 auto 4rem;
            font-size: 1.1rem;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            z-index: 1;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradientGreen);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            color: white;
        }
        
        .service-card:hover::before {
            opacity: 1;
        }
        
        .service-card:hover .service-title,
        .service-card:hover .service-description,
        .service-card:hover .learn-more {
            color: white;
        }
        
        .service-card:hover .service-icon {
            background-color: white;
            color: var(--leafGreen);
            box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
        }
        
        .service-img {
            height: 220px;
            background-size: cover;
            background-position: center;
            transition: all 0.5s ease;
        }
        
        .service-card:hover .service-img {
            transform: scale(1.05);
            opacity: 0.8;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background-color: var(--leafGreen);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 25px rgba(25, 135, 84, 0.3);
            transition: all 0.3s ease;
        }
        
        .service-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--deepGreen);
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }
        
        .service-description {
            color: #666;
            margin-bottom: 1.5rem;
            transition: color 0.3s ease;
        }
        
        .learn-more {
            color: var(--leafGreen);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .learn-more:hover {
            gap: 12px;
        }
        
        /* Features Section */
        .features-section {
            background-color: var(--pearlWhite);
        }
        
        .features-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .features-content {
            flex: 1;
        }
        
        .features-image {
            flex: 1;
            position: relative;
        }
        
        .features-img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }
        
        .feature-box {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            background: var(--gradientGreen);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            flex-shrink: 0;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(15, 81, 50, 0.3);
        }
        
        .feature-content {
            flex: 1;
        }
        
        .feature-title {
            font-weight: 600;
            color: var(--deepGreen);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        
        .feature-description {
            color: #666;
            font-size: 0.95rem;
        }
        
        /* Testimonials */
        .testimonials-section {
            background: var(--gradientGreen);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 Q50,80 0,100"></path></svg>');
            background-size: 100% auto;
            background-repeat: no-repeat;
            background-position: bottom;
            pointer-events: none;
        }
        
        .section-title.light {
            color: white;
        }
        
        .section-title.light::after {
            background: white;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: white;
            color: var(--charcoalGray);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 5rem;
            font-family: Georgia, serif;
            color: rgba(25, 135, 84, 0.1);
            line-height: 1;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .client-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1.5rem;
            border: 3px solid var(--leafGreen);
        }
        
        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-name {
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }
        
        .client-role {
            color: var(--leafGreen);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: #555;
            position: relative;
            z-index: 1;
        }
        
        .stars {
            color: #FFD700;
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .cta-section {
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-container {
            background: var(--gradientGreen);
            color: white;
            padding: 80px 40px;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(15, 81, 50, 0.3);
        }
        
        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            animation: rotate 20s linear infinite;
            z-index: 0;
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .cta-description {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        /* Footer */
       /* footer {
            background-color: var(--charcoalGray);
            color: var(--pearlWhite);
            padding: 80px 0 30px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23242a30" d="M0,0 L100,0 L100,100 Q50,80 0,100"></path></svg>');
            background-size: 100% auto;
            background-repeat: no-repeat;
            background-position: top;
            transform: rotate(180deg);
            pointer-events: none;
        }
        */
		
		
		
		
			/*Option 1:*/	
		
		footer {
    background-color: #8B4513; 
    color: #F8F9FA;
}

footer::before {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23245c19" d="M0,0 L100,0 L100,100 Q50,80 0,100"></path></svg>');
}

.social-link:hover {
    background: linear-gradient(135deg, #4CAF50 0%, #2C5E1A 100%);
}

	.footer-heading::after {
    background: linear-gradient(135deg, #4CAF50 0%, #2C5E1A 100%);
}


		
		
		
		
		
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            text-decoration: none;
        }
        
        .footer-logo-icon {
            background: var(--gradientGreen);
            color: var(--pearlWhite);
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 1.2rem;
        }
        
        .footer-logo-text {
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
        }
        
        .footer-logo-text span {
            color: var(--leafGreen);
        }
        
        .footer-description {
            color: #BBB;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.7;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
     /*   .social-link:hover {
            background: var(--gradientGreen);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(15, 81, 50, 0.3);
        }
        */
        .footer-heading {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }
        
        /*.footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradientGreen);
            border-radius: 3px;
        }
        */
        .footer-links {
            list-style: none;
        }
        
        .footer-link {
            margin-bottom: 0.8rem;
        }
        
        .footer-link a {
            color: #BBB;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-link a:hover {
            color: var(--leafGreen);
            transform: translateX(5px);
        }
        
        .newsletter-form {
            margin-top: 1.5rem;
        }
        
        .newsletter-input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 6px;
            border: none;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        
        .newsletter-input:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 0 2px var(--leafGreen);
        }
        
        .newsletter-input::placeholder {
            color: #BBB;
        }
        
        .newsletter-btn {
            width: 100%;
            padding: 12px;
            border-radius: 6px;
            background: var(--gradientGreen);
            color: white;
            border: none;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(15, 81, 50, 0.4);
        }
        
        .copyright {
            text-align: center;
            padding-top: 15px;
            margin-top: 30px;
           /* border-top: 1px solid rgba(255, 255, 255, 0.1);*/
		   
		   
		   
		   /*border-top: 2px solid #4CAF50;*/
		   
		   
		  /* border-top: 2px solid #4CAF50;*/
		  
		 /* border-top: 2px solid #A5D6A7;*/
		  
		  
		  
		  /* border-top: 2px solid #C8E6C9;*/
		  
		  
		/*  border-top: 2px solid #FFD54F; */
		
		
		
		border-top: 2px solid rgba(255, 255, 255, 0.4); 
		
		
		   
		  
		  /* 
		  
		 
		  
		  
		  border-top: 2px solid rgba(255, 255, 255, 0.4);*/
		  
            color: #BBB;
            font-size: 0.9rem;
        }
        
        /* Animations */
        .animate-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .animate-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .delay-1 {
            transition-delay: 0.1s;
        }
        
        .delay-2 {
            transition-delay: 0.2s;
        }
        
        .delay-3 {
            transition-delay: 0.3s;
        }
        
        /* Floating Elements */
        .floating-element {
            position: absolute;
            z-index: -1;
            opacity: 0.7;
        }
        
        .floating-1 {
            top: 20%;
            left: 5%;
            animation: float 8s ease-in-out infinite;
        }
        
        .floating-2 {
            bottom: 15%;
            right: 8%;
            animation: float 10s ease-in-out infinite reverse;
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .features-container {
                flex-direction: column;
            }
            
            .features-image {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .cta-description {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section {
                padding: 120px 0 80px;
                text-align: center;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .cta-container {
                padding: 60px 20px;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }
			
			
		
        }
		
			  /* New image slider styles */
     /*   .hero-image-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
        }
        
		  .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center top;
			background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
*/

/*

.hero-image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; 
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5; 
    text-align: center;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
}
*/



.hero-image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full screen height */
    z-index: -2; 
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center; /* better centering */
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5; /* hamesha image ke upar rahe */
    text-align: center;
    color: #FFFFFF; 
    top: 50%;
    transform: translateY(-50%);
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.hero-title {
    color: #FFD54F; /* Yellow/Gold accent for contrast */
}
.hero-subtitle {
/*    color: #F8F9FA;
color: rgb(255 255 255 / var(--tw-text-opacity, 1));*/
color:#EA172A;
    opacity: 0.9;
}


 /* Pearl Farming Section Styles */
    .pearl-farming-section {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        z-index: 1000;
        overflow-y: auto;
        padding: 20px 0;
    }
    
    .pearl-header {
        text-align: center;
        margin-bottom: 40px;
        position: relative;
    }
    
    .back-button {
        position: absolute;
        left: 0;
        top: 0;
        background: #f8f9fa;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
    }
    
    .pearl-main-image {
        width: 100%;
        height: 400px;
        overflow: hidden;
        border-radius: 10px;
        margin-bottom: 30px;
    }
    
    .pearl-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .pearl-details {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .pearl-feature {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 10px;
    }
    
    .pearl-feature .feature-icon {
        font-size: 2rem;
        color: #3498db;
        margin-bottom: 15px;
    }
    
    .pearl-types {
        margin-bottom: 50px;
    }
    
    .types-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .pearl-type img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .pearl-cta {
        text-align: center;
        padding: 40px 0;
        background: #f8f9fa;
        border-radius: 10px;
    }