:root {
    --primary-color: #091349;
    --text-color: #333;
    --white: #fff;
}
html, body{margin:0;padding:0;}

/* Top Bar Styles */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-bar-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
}

.contact-info i, .office-hours i {
    margin-right: 5px;
}

/* Main Header Styles */
.main-header {
    padding: 20px 0;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.main-nav ul {
    display: flex;
	justify-content:flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}
.header-buttons{display:none;}
.header-buttons button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
}

.header-buttons i {
    font-size: 18px;
    color: var(--text-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
	.header-buttons{display:block;}
    .top-bar-info {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        margin-top: 10px;
    }
    
    .main-nav {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }
}

@media (min-width: 769px) {
    .menu-btn {
        display: none;
    }
}
.hero {
    position: relative;
    background-color: #3f3f40;
    padding: 100px 0;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 0 0 50%;
    color: #fff;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 80%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #d2ab67;
    color: #fff;
}

.btn-primary:hover {
    background-color: #091349;
}

.btn-video {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 10px;
}

.play-icon {
    width: 40px;
    height: 40px;
    background-color: #091349;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    flex: 0 0 45%;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
}

.stats-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-icon {
    width: 50px;
    height: 50px;
    background: #091349;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.stats-info {
    display: flex;
    flex-direction: column;
}

.stats-number {
    font-size: 24px;
    font-weight: 700;
    color: #0A2533;
}

.stats-text {
    font-size: 14px;
    color: #666;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20px 20px, rgba(255,255,255,0.1) 2px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.4;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        flex: 0 0 100%;
        margin-bottom: 50px;
    }

    .hero-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        flex: 0 0 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}
.advantages {
    padding: 100px 0 100px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #091349!important;
    font-family: 'Space Grotesk', sans-serif;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.advantage-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 24px;
    color: #091349;
}

.advantage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0A2533;
}

.advantage-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: #091349;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Support Card Styles */
.support-card {
    background-color: #404041;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 60px;
}

.support-content {
    display: flex;
    align-items: center;
    padding: 40px;
}

.support-text {
    flex: 1;
    color: #fff;
    padding-right: 40px;
}

.support-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.support-text p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.chat-button {
	display:inline-block;
    background-color: #d2ab67;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s ease;
	text-decoration:none;
}

.chat-button:hover {
    background-color: #fff;
	color:#091349
}

.support-image {
    flex: 1;
    max-width: 400px;
}

.support-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .support-content {
        flex-direction: column;
        text-align: center;
    }

    .support-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .support-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }
}
.testimonials {
    padding: 0 0 50px 0;
    background-color: #fff;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    font-size: 3rem;
    color: #0A2533;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 20px;
}

.testimonials-header p {
    color: #666;
    max-width: 500px;
}

.testimonial-nav {
    display: flex;
    gap: 15px;
}

.testimonial-nav button {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav button:hover {
    background: #091349;
    color: #fff;
    border-color: #091349;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-item {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.rating {
    color: #ffc107;
    margin-bottom: 20px;
}

.rating i {
    margin-right: 5px;
}

blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #0A2533;
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Partners Section Styles */
.partners {
    padding: 60px 0;
    background: #fff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 30px;
    align-items: center;
}
.partners-grid-card {
	height:100%;display:flex;align-items:center;justify-content:center;background:#f7f7f7;border-radius:10px;padding:5px;
}

.partners-grid img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partners-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-header {
        flex-direction: column;
    }

    .testimonial-nav {
        margin-top: 20px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-header h2 {
        font-size: 2.5rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.gallery {
    padding: 60px 0;
    background-color: #404041;
}

.gallery .section-title {
    text-align: center;
    font-size: 3rem;
    color: #d2ab67!important;
    margin-bottom: 50px;
    font-family: 'Space Grotesk', sans-serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 0 15px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(77, 139, 111, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Fancybox Customization */
.fancybox-bg {
    background: #0A2533;
}

.fancybox-caption {
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0) 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 24px;
}

/* Footer Styles */
.footer {
    background-color: #0A2533;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.8;
}

.company-name {
    margin-left: 15px;
    font-weight: 500;
}

.legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.legal-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 0.8;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

.footer-address {
    text-align: center;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}
.footer-address p{line-height:1.5}

.developer-credit {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.developer-credit img {
    height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .social-links {
        justify-content: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 10px;
    }

    .separator {
        display: none;
    }

    .footer-address {
        padding: 0 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }

    .whatsapp-float span {
        display: none;
    }
}


/* About Section Styles */
.about {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.about-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.about-card .icon-box {
    width: 60px;
    height: 60px;
    background-color: #e6efe9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-card .icon-box i {
    font-size: 24px;
    color: #4D8B6F;
}

.about-card h3 {
    font-size: 1.5rem;
    color: #0A2533;
    margin-bottom: 20px;
}

.about-card p {
    color: #666;
    line-height: 1.8;
}

/* History Card Styles */
.history-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.history-content {
    display: flex;
    gap: 50px;
    padding: 50px;
}

.history-text {
    flex: 1;
}

.history-text h3 {
    font-size: 2rem;
    color: #0A2533;
    margin-bottom: 30px;
}

.history-paragraphs p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.history-image {
    flex: 0 0 400px;
}

.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .history-content {
        flex-direction: column;
    }

    .history-image {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }

    .history-content {
        padding: 30px;
    }
}