.hero-section{
    background:#000;
    min-height:90vh;
    display:flex;
    align-items:center;
    padding: 100px 0;
}

.hero-content{
    color:white;
}

.main-heading{
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    color:#cfcfcf;
    margin-bottom:30px;
}

.hero-btn{
    padding:12px 30px;
    font-weight:600;
    border-radius:6px;
}

.hero-image img{
    max-width:100%;
}

.hero-content{
    color: white;
}

.main-heading{
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 18px;
    line-height: 1.5;
    color: #d6d6d6;
    margin-bottom: 8px;   /* reduces spacing between paragraphs */
}

.hero-content p:last-of-type{
    margin-bottom: 24px;  /* space before button */
}

.hero-btn{
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 6px;
}

.custom-navbar{
    transition: all 0.3s ease;
    background: transparent;
}

.custom-navbar.scrolled{
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
}

.custom-navbar{
    background: #000;
    transition: opacity 0.3s ease;
}

.custom-navbar .nav-link{
    color:#fff;
    margin-left:20px;
    font-weight:500;
}

.custom-navbar .nav-link:hover{
    color:#ddd;
}
.navbar-toggler {
    border-color: white;
}

.navbar-toggler-icon {
    filter: invert(1);
}
/* WhatsApp button */

.whatsapp-btn{
    background:#25D366;
    color:#fff;
    font-weight:600;
    padding:10px 18px;
    border-radius:6px;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
    color:#fff;
}

/* opacity effect when scrolling */

.custom-navbar.scrolled{
    opacity:0.75;
}


/* About Section */
.about-section{
    padding: 100px 0; /* Increased padding for more separation */
    background: 
        conic-gradient(from 27deg at 8.2% 45.31%, #efefef40 0deg, #ffffff40 360deg),
        conic-gradient(from 172deg at 15.45% 34.5%, #efefef66 0deg, #fff6 360deg),
        conic-gradient(from 178deg at 88.78% 2.2%, #ebeaea66 0deg, #fff6 360deg),
        conic-gradient(from 193deg at 88.75% 34.65%, #dbdbdb66 0deg, #fff6 360deg),
        #fff;
}

.section-title{
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.about-text{
    color: #000;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 15px auto;
    line-height: 1.6;
}

/* Services Section*/
/* Section Background */
.services-section{
    padding: 150px 0;
    background-color: #000; /* solid black base */
    background-image:
        conic-gradient(from 27deg at 8.2% 45.31%, #efefef10 0deg, #ffffff10 360deg),
        conic-gradient(from 172deg at 15.45% 34.5%, #efefef22 0deg, #fff6 360deg),
        conic-gradient(from 178deg at 88.78% 2.2%, #ebeaea22 0deg, #fff6 360deg),
        conic-gradient(from 193deg at 88.75% 34.65%, #dbdbdb22 0deg, #fff6 360deg);
    background-blend-mode: overlay;
}

/* Section Title */
.services-section .section-title{
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
}

/* Service Box */
.service-box{
    padding: 50px 0 !important;
    background: #111; /* slightly lighter than black to pop over section */
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7); /* prominent shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.service-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

/* Image */
.service-image{
    display: flex;
    justify-content: center;
    align-items: center;
}

.moving-image{
    max-width: 120px;
    animation: float 3s ease-in-out infinite alternate;
}

/* Heading & Description */
.service-title{
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-top: 15px;
}

.service-desc{
    font-size: 16px;
    color: #ccc;
    margin-top: 10px;
    line-height: 1.5;
}

/* Floating Animation */
@keyframes float {
    0%{ transform: translateX(0px); }
    50%{ transform: translateX(8px); }
    100%{ transform: translateX(0px); }
}

.icon-wrap {
    background: linear-gradient(135deg, #0246c1, #ff0055);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Large WhatsApp Button for Services Section */
.whatsapp-btn-lg{
    background:#25D366; /* WhatsApp green */
    color:#fff;
    font-weight:600;
    padding:15px 40px;
    border-radius:8px;
    font-size:18px;
    display:inline-flex;
    align-items:center;
    gap:10px; /* space between icon and text */
    transition: background 0.3s ease, transform 0.3s ease;
}

.whatsapp-btn-lg:hover{
    background:#1ebe5d;
    transform: scale(1.05);
    color:#fff;
}


/* YOUTUBE SECTION */
/* Videos Section */
.videos-section{
    padding: 150px 0;
    background: #111; /* dark background */
}

/* Section Title */
.videos-section .section-title{
    font-size: 40px;
    font-weight:700;
    color: #fff;
    margin-bottom: 50px;
}

/* Video Box */
.video-box{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-box iframe{
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height:100%;
    border-radius: 12px;
}

.video-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* Reviews Section */

/* Section Background */
.reviews-section{
    padding: 150px 0;
    background: #fff; /* white background */
}

/* Section Title */
.reviews-section .section-title{
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 50px;
}

/* Review Box */
.review-box{
    background: #f7f7f7; /* light gray box */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.avatar {
    background: linear-gradient(135deg, #0246c1, #ff0055);
    color: #fff;
    font-weight: 700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    position:absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}

.review-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Person Image */
.review-img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* Name */
.review-name{
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
}

/* Stars */
.review-stars i{
    color: #FFD700; /* yellow stars */
    margin: 0 2px;
    font-size: 16px;
}

/* Review Text */
.review-text{
    font-size: 15px;
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
}

/* Contact us section */

/* Contact Section */
.contact-section{
    padding: 150px 0;
    background: #000; /* black background */
}

/* Section Title */
.contact-section .section-title{
    font-size: 40px;
    font-weight:700;
    margin-bottom: 50px;
}

/* Contact Info */
.contact-info{
    background: #111; /* slightly lighter black for contrast */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Contact Form */
.contact-form{
    background: #111; /* slightly lighter black */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.contact-form input,
.contact-form textarea{
    background: #222;
    border: none;
    color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline: none;
    border: 1px solid #25D366; /* WhatsApp green focus */
}
#contact input::placeholder,
#contact textarea::placeholder {
    color: #aaa;
    opacity: 1;
}
.contact-form button{
    background: #25D366;
    color: #fff;
    font-weight:600;
    border:none;
    padding:12px 0;
    border-radius:6px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover{
    background: #1ebe5d;
    transform: scale(1.03);
}

/* Footer */
.footer-section{
    background: #111;
    padding: 40px 0;
}

.footer-section p{
    color: #aaa;
    margin:0;
}

.footer-section .social-icons a{
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-section .social-icons a:hover{
    color: #25D366; /* WhatsApp green hover effect */
}

/* YOUTUBE VIDEOS */
.video-card{
    position:relative;
    cursor:pointer;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
    transition:transform .3s;
}

.video-card:hover{
    transform:translateY(-5px);
}

.video-card img{
    width:100%;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:#ff0000;
    color:white;
    font-size:24px;
    padding:12px 18px;
    border-radius:50%;
}

