
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --dark-blue: #181f2f;
    --light-blue: #3a4458;
    --primary-color: #212b3b;
    --secondary-color: #181f2f;
    --accent-color: #f8f9fa;
    --text-color: #333;
    --text-light: #6c757d;
    --white: #fff;
    --border-color: #dee2e6;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero {
    background: radial-gradient(circle at top left, #f6f6ff, #ffffff);
    position: relative;
}

.hero::before {
    content: "";
    background-image: url('https://www.svgbackgrounds.com/wp-content/uploads/2021/05/blob-scene-haikei.svg');
    position: absolute;
    top: -50px;
    right: -100px;
    width: 600px;
    height: 600px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.15;
}


.blob-shape {
  position: absolute;
  top: -80px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 30% 30%, #ffcf88, #ffb84c);
  opacity: 0.2;
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
}
.hero {
  position: relative;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}

.circle1 {
  top: -50px;
  right: 20%;
  width: 150px;
  height: 150px;
  background-color: #ffd699;
}

.circle2 {
  bottom: -6px;
  left: 10%;
  width: 100px;
  height: 100px;
  background-color: #ffeabf;
}


a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.dark-bg {
    background-color: var(--dark-blue);
    color: var(--white);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-dark {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-dark {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary i, .btn-secondary i, .btn-outline i, .btn-dark i {
    margin-left: 8px;
}

/* Header */
header {
    padding: 20px 0;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--light-blue);
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item h2 span {
    font-size: 2rem;
    color: #6c757d;
}

.stat-item p {
    color: var(--text-light);
    max-width: 250px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Services Section */
.services {
    padding: 100px 0;
    text-align: center;
}

.service-video {
    position: relative;
    margin: 0 auto 60px;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
}

.service-video img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button i {
    font-size: 24px;
    color: var(--primary-color);
}

.service-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.service-item {
    background-color: var(--light-blue);
    padding: 30px;
    border-radius: 10px;
}

.service-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-item p {
    color: #adb5bd;
}

/* Clients Section */
.clients {
    padding: 80px 0;
    text-align: center;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.client-logo {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
}

.client-logo i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Community Section */
.community {
    padding: 80px 0;
}

.community .container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.community-content {
    flex: 1;
}

.community-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.community-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.community-content h3 {
    margin: 40px 0 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 15px;
    column-gap: 30px;
}

.benefits-list li {
    display: flex;
    align-items: center;
}

.benefits-list li i {
    margin-right: 10px;
    color: #28a745;
}

.community-images {
    flex: 1;
    display: grid;
    grid-template-rows: auto auto;
    gap: 20px;
}

.community-images img {
    width: 100%;
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
}

/* Events Section */
.events {
    padding: 100px 0;
    text-align: center;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.event-card {
    background-color: var(--light-blue);
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
}

.event-header img {
    width: 100%;
    height: auto;
    display: block;
}

.event-body {
    padding: 25px;
}

.event-body h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.event-body p {
    margin-bottom: 10px;
    color: #adb5bd;
}

.event-body p i {
    margin-right: 10px;
}

.event-body .btn-outline {
    margin-top: 20px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev, .next {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

.slider-dots {
    display: flex;
    gap: 8px;
    margin: 0 20px;
}

.dot {
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
}

.dot.active {
    background-color: var(--white);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    text-align: center;
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    flex: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h4 {
    font-size: 1rem;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonials .slider-dots .dot {
    background-color: rgba(0, 0, 0, 0.1);
}

.testimonials .slider-dots .dot.active {
    background-color: var(--primary-color);
}

.testimonials .prev, .testimonials .next {
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
}

.section-subtitle {
    color: #adb5bd;
    margin-bottom: 50px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    color: var(--white);
}

.contact-method i {
    margin-right: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .service-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .community .container {
        flex-direction: column;
    }
    
    .event-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-cards {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        /* gap: 15px; */
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-items {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .event-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .stats {
        flex-direction: column;
        gap: 15px;
    }

    .hero .container,
    .community .container,
    .testimonial-cards {
        flex-direction: column;
    }

    .community-images {
        grid-template-rows: auto;
    }

    .service-items,
    .event-cards,
    .benefits-list {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-dark {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    nav ul li {
        margin: 0;
    }

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





.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

   
}


/* New mobile control container */
.mobile-controls {
    display: none;
    gap: 10px;
    align-items: center;
}

/* Show mobile controls on small screens */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    nav {
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        display: none;
        padding: 15px 0;
        background-color: var(--white);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    nav ul.active {
        display: flex;
    }

    .mobile-controls {
        display: flex;
    }

    .mobile-menu-toggle {
        font-size: 1.6rem;
        cursor: pointer;
        padding: 10px;
    }

    .btn-secondary {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Default: show desktop button, hide mobile */
.desktop-btn {
    display: inline-flex;
}
.mobile-btn {
    display: none;
}


/* On mobile: show mobile button, hide desktop */
@media (max-width: 768px) {
    .desktop-btn {
        display: none;
    }

       .desk_image {
        display: none;
    }

    .mobile-btn {
        display: inline-flex;
    }

    .mobile-controls {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

/* On mobile: show mobile button, hide desktop */
@media (min-width: 768px) {
 .mobile_image {
        display: none;
 }
}
