body{
		margin: auto;
		  font-family: get;
	}
	/* General Header Style */
.top-header {
  background-color: #D69811;
  color:white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 60px;
  font-family: get;
	font-weight: 700;
	height: 50px;
}
 
/* Phone number */
.contact {
  font-size: 20px;

}

/* Social Icons */
.social-icons a {
  color:white;
  margin-left: 20px;
  font-size: 22px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ddd;
}
	.num{
		color: white;
		font-size: 19px;
		text-decoration: none;
	}
	/* Logo + name container */
/* Container for logo + nav */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;  /* pushes nav to right */
  padding: 10px 40px;

}
	#all{
		  border-bottom: 5px solid #D69811;
		  position: sticky;
		  top: 0;
		background-color: white;
		z-index: 100;
		
	}

/* Logo + name */
.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: 50px;
}

.logo span {
  font-weight: 900;
  font-size: 14pt;
}

/* Navigation */
#nav {
  display: flex;
  gap: 20px;
}

#nav a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}


.hover-underline-animation {
  display: inline-block;
  position: relative;
 
}

.hover-underline-animation::after {
  content: '';
	
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 4px;
	border-radius: 5px;
  bottom: -10px;
  left: 0;
  background-color: #D69811;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
}

.hover-underline-animation.left::after {
  transform-origin: bottom right;
	
}

.hover-underline-animation.left:hover::after {
  transform-origin: bottom left;
}
	#Hamburger{
	 display: none;
	}
	#slider{
		padding: 0px 10px;
		margin-left: 20px;
		color: black;
	}
	#slider a{
		color: black;
		text-decoration: none;
		font-weight: 900;
	}
	#ser{
		color: black;
		text-decoration: none;
		font-weight: 900;
	}
	#service{
		width: 100px;
		height: auto;
		padding-left: 10px;
		border: 5px solid #D69811;
		border-radius: 5px;
	}
	#serve{
		width: 100px;
		height: auto;
		padding-left: 10px;
		border: 5px solid #D69811;
		border-radius: 5px;
		z-index: 100;
		color: black;
		left: 79%;
		position: relative;
		margin-bottom: 10px;
		
	}
	#serve a{
		text-decoration: none;
		font-weight: 900;
		color: black;
	}
	
	hr{
		height: 5px;
		margin-left: -10px;
		color: #D69811;
		fill: #D69811;
		background-color: #D69811;
		border: 0px;
	}
.bx-wrapper, .bx-viewport {
    height: 400px !important; 
	width: 100%;
}
/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    text-align: center;
	  height: 80px;
	  
	  
  }
	   
	#pass{
		margin-top: 40px;
	}

	#Hamburger {
		display: block;
		height: 20px;
		width: 20px;
		text-align: center;
		background-color: black;
		padding: 5px;
		border-radius: 5px;
		margin-right: 10px;
		border: 2px solid #D69811;
	}
  .social-icons {
    margin-top: 18px;
  }
	#nav{
		display: none;
	}
	#header{
		padding: 10px 20px;
	}
	.logo{
		gap: 15px;
	}
}
/* Slider wrapper */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-height: 80vh;
}

/* Slides container */
.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* Each slide */
.slide {
  min-width: 100%;
  position: relative;
	display: none;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Caption inside slide */
.slide .caption {
  position: absolute;
  top: 10%;
  left: 75%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 20px;
	
	padding-left: 105px;
  border-radius: 8px;
  border: 1px solid aliceblue;
  font-size: 1.3rem;
  text-align: center;
  max-width: 90%;
	font-family: get;
	padding-top: 15px;
	height: 20px;
}

/* Buttons inside slider */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 26px;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 10;
}

.prev {
  left: 10px;  /* inside left */
}

.next {
  right: 10px; /* inside right */
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
	.slide{
		display: block;
	}
  .slider {
    max-height: 50vh;
	  
  }
  .slide .caption {
    font-size: 1rem;
    padding: 6px 155px;
    bottom: 84%;
  }
  .prev, .next {
    font-size: 20px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
	.slide{
		display: block;
	}
  .slider {
    max-height: 40vh;
  }
  .slide .caption {
    font-size: 0.9rem;
    padding: 4px 25px;
    bottom: 80%;
	  width: 80px;
  }
  .prev, .next {
    font-size: 18px;
    padding: 9px 15px;
	  opacity: 40%;
  }
}

.hero {
            background: linear-gradient(135deg, rgba(26,95,63,0.95), rgba(45,134,89,0.9)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="islamic" patternUnits="userSpaceOnUse" width="80" height="80"><circle cx="40" cy="40" r="25" fill="none" stroke="rgba(255,215,0,0.1)" stroke-width="2"/><path d="M15,40 Q40,15 65,40 Q40,65 15,40" fill="none" stroke="rgba(255,215,0,0.08)" stroke-width="1.5"/></pattern></defs><rect width="1200" height="800" fill="url(%23islamic)"/></svg>');
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(255,215,0,0.1) 0%, transparent 50%);
        }

        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .floating-icon {
            position: absolute;
            font-size: 3rem;
            opacity: 0.08;
            animation: float 8s ease-in-out infinite;
        }

        .floating-icon:nth-child(1) {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-icon:nth-child(2) {
            top: 25%;
            right: 20%;
            animation-delay: -2s;
        }

        .floating-icon:nth-child(3) {
            bottom: 30%;
            left: 15%;
            animation-delay: -4s;
        }

        .floating-icon:nth-child(4) {
            bottom: 20%;
            right: 10%;
            animation-delay: -6s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        .hero-content {
            max-width: 900px;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1.2s ease-out;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, #fff, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .btn {
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #1a5f3f;
            box-shadow: 0 6px 20px rgba(255,215,0,0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 3px solid white;
            backdrop-filter: blur(10px);
        }

        .btn:hover {
            transform: translateY(-3px) scale(1.02);
        }

        .btn-primary:hover {
            box-shadow: 0 12px 30px rgba(255,215,0,0.6);
        }

        .btn-secondary:hover {
            background: white;
            color: #1a5f3f;
            box-shadow: 0 8px 25px rgba(255,255,255,0.3);
        }

        /* Trust Indicators */
        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: 3rem;
            opacity: 0.8;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1rem;
        }

        .trust-item i {
            color: #ffd700;
            font-size: 1.5rem;
        }

        /* Services Section */
        .services {
            padding: 8rem 0;
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
        }

        .section-header h2 {
            font-size: 3.5rem;
            color: #1a5f3f;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
            margin-bottom: 5rem;
        }

        .service-card {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(26,95,63,0.05);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,215,0,0.05), transparent);
            transition: all 0.6s;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
            border-color: rgba(255,215,0,0.2);
        }

        .service-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #1a5f3f, #2d8659);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.4s ease;
        }

        .service-icon::before {
            content: '';
            position: absolute;
            inset: -3px;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon::before {
            opacity: 1;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-icon i {
            font-size: 2.5rem;
            color: #ffd700;
        }

        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            color: #1a5f3f;
            font-weight: 700;
        }

        .service-card p {
            color: #666;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        /* Features Section */
        .features {
            padding: 8rem 0;
            background: white;
        }

        .features-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 6rem;
        }

        .features-text h2 {
            font-size: 2.8rem;
            color: #1a5f3f;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .features-text p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 2rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .feature-item:hover {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            transform: translateX(10px);
            border-color: rgba(255,215,0,0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1a5f3f, #2d8659);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
        }

        .feature-icon::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon::before {
            opacity: 1;
        }

        .feature-icon i {
            font-size: 1.8rem;
            color: #ffd700;
        }

        .feature-content h4 {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: #1a5f3f;
            font-weight: 600;
        }

        .feature-content p {
            color: #666;
            line-height: 1.7;
        }

        /* Stats Section */
        .stats {
            padding: 6rem 0;
            background: linear-gradient(135deg, #1a5f3f 0%, #2d8659 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 400"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="2" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="1000" height="400" fill="url(%23dots)"/></svg>');
        }

        .stats-content {
            position: relative;
            z-index: 2;
        }

        .stats h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .stat-item {
            padding: 2rem 1rem;
            position: relative;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: bold;
            color: #ffd700;
            margin-bottom: 0.5rem;
            display: block;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .stat-label {
            font-size: 1.2rem;
            opacity: 0.95;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 0;
            background: linear-gradient(135deg, rgba(26,95,63,0.95), rgba(45,134,89,0.9)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,215,0,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,215,0,0);stop-opacity:0" /></radialGradient></defs><circle cx="500" cy="300" r="250" fill="url(%23grad1)"/><circle cx="500" cy="300" r="200" fill="none" stroke="rgba(255,215,0,0.1)" stroke-width="2"/><circle cx="500" cy="300" r="150" fill="none" stroke="rgba(255,215,0,0.08)" stroke-width="1.5"/></svg>');
            background-size: cover;
            text-align: center;
            color: white;
            position: relative;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, #fff, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            line-height: 1.7;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero {
                height: 70vh;
                padding: 0 1rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .trust-indicators {
                gap: 2rem;
            }

            .section-header h2 {
                font-size: 2.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-card {
                padding: 2rem 1.5rem;
            }

            .features-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .features-text h2 {
                font-size: 2.2rem;
            }

            .feature-item {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .stat-number {
                font-size: 3rem;
            }

            .cta-content h2 {
                font-size: 2.2rem;
            }

            .cta-content p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .services {
                padding: 4rem 0;
            }

            .features {
                padding: 4rem 0;
            }

            .stats {
                padding: 4rem 0;
            }

            .cta-section {
                padding: 4rem 0;
            }

            .container {
                padding: 0 1rem;
            }
        }