/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Reduced padding for mobile */
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header styles */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #004a99;
    margin-left: 15px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a73e8;
}

.nav-links a.active {
    font-weight: 700;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1a73e8;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s;
}

/* Hero slider styles */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px; /* Account for fixed header */
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

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

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.7);
}

.slide-content {
    width: 100%;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.text-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.primary-btn {
    background-color: #1a73e8;
    color: #fff;
}

.primary-btn:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background-color: #25d366; /* WhatsApp green color */
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.whatsapp-btn:hover {
    background-color: #128c7e; /* Darker WhatsApp green */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Slider controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .text-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-slider {
        height: 90vh; /* Slightly reduce height on tablets */
    }
}

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

    .logo img {
        height: 60px; /* Smaller logo on mobile */
    }
    
    .logo-text {
        font-size: 18px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .text-content h1 {
        font-size: 1.8rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider {
        height: 80vh; /* Further reduce height on mobile */
    }
    
    /* Adjust section padding for mobile */
    .about-section,
    .why-us-section,
    .services-section,
    .other-services-section,
    .partner-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .text-content h1 {
        font-size: 1.6rem;
    }

    .logo-text {
        font-size: 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image,
    .about-text {
        width: 100%;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .hero-slider {
        height: 70vh; /* Even smaller height on small phones */
        margin-top: 60px;
    }
    
    /* Reduce section title font size */
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    /* Adjust other services section padding */
    .other-services-content {
        padding: 25px 15px;
    }
    
    /* Make service items more compact */
    .service-item {
        padding: 8px 12px;
        margin-bottom: 10px;
    }
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-image {
    flex: 1;
    max-width: 45%;
}

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

.about-text {
    flex: 1;
    max-width: 45%;
}

.about-text .section-title {
    margin-bottom: 25px;
}

.title-bar {
    width: 80px;
    height: 3px;
    background-color: #1a73e8;
    margin-bottom: 15px;
}

.about-text .section-title h2 {
    font-size: 2.2rem;
    color: #333;
    line-height: 1.3;
}

.about-description p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image,
    .about-text {
        width: 100%;
        max-width: 100%;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .feature-cards {
        flex-direction: column;
    }
    
    .feature-card {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Why Us Section Styles */
.why-us-section {
    padding: 80px 0;
    background-color: #f5f9ff;
}

.text-center {
    text-align: center;
}

.why-us-section .section-title {
    margin-bottom: 50px;
}

.why-us-section .section-title h2 {
    font-size: 2.5rem;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.why-us-section .section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1a73e8;
}

.feature-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 250px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: #1a73e8;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .why-us-section .section-title h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .feature-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-card {
        width: 100%;
        margin-bottom: 20px;
        min-width: 100%;
    }
    
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .why-us-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    .service-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .why-us-section .section-title h2 {
        font-size: 1.6rem;
    }
}

/* Services Section Styles */
.services-section {
    padding: 80px 0 40px;
    background-color: #edf5ff;
}

.services-section .section-title {
    margin-bottom: 50px;
}

.services-section .section-title p {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #666;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #1a73e8;
    color: #fff;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-section .section-title h2 {
        font-size: 2rem;
    }
    
    .services-section .section-title p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .services-section .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .service-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .services-section .section-title h2 {
        font-size: 1.6rem;
    }
    
    .services-section .section-title p {
        font-size: 0.9rem;
    }
}
/* Other Services Section Styles */
.other-services-section {
    padding: 40px 0 80px;
    background-color: #edf5ff;
}

.other-services-content {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.other-services-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.service-list-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.service-list {
    flex: 1;
    min-width: 250px;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: #e8f0fe;
    transform: translateX(5px);
}

.service-item i {
    color: #1a73e8;
    margin-right: 10px;
    font-size: 1.1rem;
}

.service-item span {
    font-size: 1rem;
    color: #333;
}

@media (max-width: 992px) {
    .service-list-container {
        flex-direction: column;
    }
    
    .service-list {
        width: 100%;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #004a99;
    color: #fff;
    padding: 20px 0;
}

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

.footer-info .copyright {
    margin: 0;
    font-size: 0.9rem;
}

.footer-contact .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-contact .whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-contact .whatsapp-btn i {
    font-size: 1.5rem;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        margin-bottom: 20px;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp i {
    font-size: 2rem;
}

.floating-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .floating-whatsapp i {
        font-size: 1.5rem;
    }
}
/* Partner Section Styles */
.partner-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.partner-section .section-title {
    margin-bottom: 50px;
}

.partner-section .section-title p {
    margin-top: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    color: #666;
}

.partner-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.partner-slider-container {
    display: flex;
    overflow: hidden;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partner-slide {
    flex: 0 0 20%;
    min-width: 20%;
    padding: 0 15px;
    text-align: center;
    transition: transform 0.5s ease;
}

.partner-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-slide:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.partner-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.partner-dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-dot.active {
    background-color: #1a73e8;
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .partner-slide {
        flex: 0 0 33.333%;
        min-width: 33.333%;
    }
}

@media (max-width: 768px) {
    .partner-slide {
        flex: 0 0 50%;
        min-width: 50%;
    }
}

@media (max-width: 576px) {
    .partner-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* Page Header Styles */
.page-header {
    background-color: #004a99;
    color: #fff;
    padding: 100px 0 50px;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 70px 0 30px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* WhatsApp CTA Section Styles */
.whatsapp-cta-section {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.whatsapp-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.whatsapp-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.whatsapp-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.whatsapp-cta-content .whatsapp-btn {
    font-size: 1.1rem;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-cta-content .whatsapp-btn i {
    font-size: 1.4rem;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .whatsapp-cta-section {
        padding: 50px 0;
    }
    
    .whatsapp-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .whatsapp-cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .whatsapp-cta-section {
        padding: 40px 0;
    }
    
    .whatsapp-cta-content h2 {
        font-size: 1.6rem;
    }
    
    .whatsapp-cta-content .whatsapp-btn {
        width: 100%;
        max-width: 280px;
    }
}