body {
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: #302e31;
}
.navbar-logo {
    height: 50px;
    width: auto;
    border-radius: 10px;
}
.navbar-nav .nav-link {
    color: #fff !important;
    margin-right: 15px;
}
.navbar-nav .nav-link:hover {
    color: #ffca28 !important;
}

/* Hero Section */
.hero-section {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1080') no-repeat center center / cover;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 15px;
}
.hero-section .content {
    max-width: 800px;
    margin: auto;
}
.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.hero-section p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.95;
}
.hero-section .btn {
    background-color: #ffca28;
    color: #6a1b9a;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    transition: all 0.3s ease;
}
.hero-section .btn:hover {
    background-color: #ffc107;
    color: #4a148c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Sections */
section {
    padding: 50px 0; /* Reduced from 80px */
}
#about, #Features, #projects, #contact-info ,#offers {
    background-color: #f4f4f9; /* keeps rest clean and neutral */
}
/* Section Titles */
h2.section-title {
    text-align: center;
    margin-bottom: 30px; /* Reduced from 50px */
    font-weight: 700;
    color: #6a1b9a;
}

/* Cards */
.card {
    border: none;
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-10px);
}

/* About Image */
#about img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

#about p{
    font-size: 22px;
}
/* Offers Section Video */
#offers {
    padding: 40px 0;
}

#offers .section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.video-wrapper {
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}
/* Contact Info Section - Large & Eye-Catching */
.contact-info {
    background-color:#ffffff;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

.contact-info h2 {
    color: #6a1b9a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.contact-info i {
    color: #ffca28;
    font-size: 1.5rem;
    margin-right: 12px;
    transition: transform 0.3s, color 0.3s;
}

.contact-info i:hover {
    transform: scale(1.3);
    color: #ffc107;
}

.contact-info a {
    color: #6a1b9a;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info {
        padding: 30px;
    }
    .contact-info h2 {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }
    .contact-info p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .contact-info i {
        font-size: 1.3rem;
        margin-right: 10px;
    }
}


/* Footer */
footer {
    background-color: #302e31;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}
footer a {
    color: #ffca28;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 2rem; }
    .hero-section p { font-size: 1rem; }
    section { padding: 30px 0; } /* Reduced gap for mobile */
    h2.section-title { margin-bottom: 20px; }
    #about p { margin-bottom: 10px; }
    #Features .row.g-4 { row-gap: 15px; }
}
@media (max-width: 576px) {
    .navbar-nav .nav-link { margin-right:0; padding:10px 0; text-align:center; }
    .hero-section { height: 50vh; }
    .hero-section h1 { font-size:1.6rem; }
    .hero-section p { font-size:0.95rem; }
    .hero-section .btn { padding: 8px 20px; font-size:0.9rem; }
}


