/* Global Styles */
:root {
    --primary-blue: #1c2a57;
    --primary-orange: #f79320;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-color: #444444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: #142045;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-brochure {
    background-color: var(--white);
    color: var(--dark-gray);
    border: 2px solid var(--dark-gray);
}

.btn-brochure:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-blue);
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-orange);
}

.text-center {
    text-align: center;
}

/* Header Styles */
.header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on mobile */
    justify-content: space-between; /* Space between logo and contact */
    align-items: center;
}

.logo-container {
    /* Remove margin-bottom as we're using flex alignment */
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.logo {
    height: 100px;
    width: auto;
    max-height: 90px; /* Smaller on mobile */
}

.contact-info {
    display: flex;
    flex-direction: row; /* Keep items in a row */
    align-items: center;
    gap: 15px;
    margin-left: auto; /* Push to right on desktop */
}

.contact-item {
    display: flex;
    align-items: center; /* Center vertically */
    gap: 8px;
    font-size: 0.9rem;
    white-space: nowrap; /* Prevent text wrapping */
}

.contact-item i {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f79320;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-orange);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row-reverse; /* Keep horizontal layout */
        justify-content: none;
        
        padding: 30px 20px;
    }

    .logo {
        max-height: 80px; /* Smaller logo on mobile */
    }

    .contact-info {
        margin-left: 0; /* Reset margin */
        gap: 10px; /* Reduce gap between items */
    }

    .contact-item {
        font-size: 0.8rem; /* Slightly smaller text */
    }

    .social-links {
        gap: 8px;
    }

    .social-links a {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact-info {
        flex-direction: column; /* Stack vertically if needed */
        align-items: flex-end; /* Align to right */
        gap: 5px;
    }

    .contact-item {
        justify-content: flex-end; /* Right-align items */
        width: 100%; /* Full width for right alignment */
    }
}



.navbar {
    background-color: var(--primary-blue);
    padding: 10px 0; /* Reduced padding */
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow-x: auto; /* Allows horizontal scrolling if needed */
    white-space: nowrap; /* Prevents wrapping */
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 8px; /* Reduced gap between items */
    padding: 0 10px; /* Added some padding on sides */
    margin: 0 auto;
    max-width: 1200px; /* Adjust based on your design */
}

.nav-list li {
    display: inline-block; /* Ensures items stay in line */
    margin: 0; /* Removed margin */
}

.nav-list a {
    color: var(--white);
    font-weight: 500;
    padding: 5px 8px; /* Reduced padding */
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    font-size: 0.95rem; /* Slightly smaller font */
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -3px; /* Raised underline slightly */
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--primary-orange);
}

/* For very small screens */
@media (max-width: 576px) {
    .navbar {
        padding: 8px 0;
    }
    .nav-list {
        gap: 5px;
        justify-content: flex-end; /* Align left on mobile */
    }
    .nav-list a {
        padding: 5px 6px;
        font-size: 0.9rem;
    }
}
.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    align-items: flex-start;
    justify-content: flex-start; /* Align right */ 
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
    justify-content: flex-start; /* Align right */ 
    
}


/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #f5f5f5;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease; /* Slower fade transition */
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.prev-slide, .next-slide {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-slide:hover, .next-slide:hover {
    background-color: var(--primary-orange);
}

/* About Section Styles */
.about-section {
    background-color: var(--primary-orange);
    color: var(--primary-blue);
    padding: 60px 0;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.about-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-section .btn {
    display: block;
    margin: 30px auto 0;
    max-width: 200px;
    text-align: center;
}

/* Services Section Styles */
.services-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item h3 {
    padding: 20px 20px 10px;
    color: var(--primary-blue);
}

.service-item ul {
    padding: 0 20px 20px;
}

.service-item ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.service-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-orange);
    border-radius: 50%;
}

/* Customers Section Styles */
.customers-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.customer-logos {
    overflow: hidden;
    width: 100%;
}

.logo-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
    width: max-content;
}

.logo-track img {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.slider-arrow {
    background: transparent;
    border: none;
    color: #1c2a57;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    color: #f79320;
    transform: scale(1.2);
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Mobile View (Single Logo) */
@media (max-width: 768px) {
    .slider-container {
        gap: 0;
        justify-content: space-between;
    }

    .customer-logos {
        overflow: hidden;
        width: calc(100% - 80px); /* Leave space for arrows */
        margin: 0 auto;
    }

    .logo-track {
        display: flex;
        gap: 0;
        transition: transform 0.5s ease;
        width: 100%;
    }

    .logo-track img {
        flex: 0 0 100%; /* Force each logo to take full width */
        min-width: 100%;
        max-width: 100%;
        height: 60px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .slider-arrow {
        font-size: 20px;
        padding: 5px;
    }
}

/* Mission Vision Section Styles */
.mission-vision {
    padding: 80px 0;
    background-color: var(--white);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mission-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.mission-image img {
    width: 100%;
    max-width: 100%; /* Ensures it doesn't exceed container width */
    height: auto; /* Maintains aspect ratio */
    object-fit: contain; /* Changed from cover to contain to prevent cropping */
    border-radius: 8px;
    display: block; /* Removes any default inline spacing */
}

.mission-content {
    padding: 20px;
}

.mission-content h2 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-orange);
}

.mission-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Projects Showcase Styles */
.projects-showcase {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.projects-showcase .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project-item {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 42, 87, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 20px;
}

.project-overlay h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Founder Section Styles */
.founder-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.founder-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.founder-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.founder-message {
    padding: 20px;
}

.founder-message h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 2rem;
}

.founder-message p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.founder-name {
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 20px;
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.team-member p {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 1rem;
}

/* Latest Works Section Styles */
.latest-works {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.work-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: translateY(-10px);
}

.work-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.work-info {
    padding: 0px;
    background-color: var(--white);
}

.work-info h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.work-info p {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Contact & Brochure Section Styles */
.contact-brochure {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-brochure .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    background-color: var(--primary-blue);
    padding: 40px;
    border-radius: 8px;
    color: var(--white);
}

.contact-form h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--white);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 2px rgba(247, 147, 32, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
/* Button with Orange Color Scheme */
.btn1 {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-orange); /* #f79320 */
    color: var(--primary-blue); /* #1c2a57 */
    border: 2px solid var(--primary-orange);
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
}

.btn1:hover {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn1:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Focus state for accessibility */
.btn1:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(247, 147, 32, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn1 {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}
.brochure-download {
    padding: 40px;
    background-color: var(--light-gray);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brochure-download h2 {
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-size: 2rem;
    align-items: Center;
}

.brochure-download p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.brochure-image {
    margin-top: 30px;
    text-align: center;
}

.brochure-image img {
    max-height: 200px;
    width: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
    min-height: 100px;
    

}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
}
img {
    max-width: 100%;
    height: auto;
}
/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .mission-vision .container,
    .founder-section .container,
    .contact-brochure .container {
        grid-template-columns: 1fr;
    }
    
    .projects-showcase .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .hero-slider {
      height: 60vh; /* Adjust height for mobile if needed */
    }
    
    .slider-controls button {
      padding: 10px;
    }
  }

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-track img {
        height: 60px;
    }
}
/* Sub Footer Styles */
.sub-footer {
    background-color: var(--primary-blue);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-footer .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.copyright p {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.copyright a {
    color: var(--primary-orange);
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.social-footer {
    display: flex;
    gap: 15px;
}

.social-footer a {
    color: var(--primary-orange);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-footer a:hover {
    color: var(--white);
    background-color: var(--primary-orange);
    transform: translateY(-2px);
}

/* Responsive Styles for Sub Footer */
@media (max-width: 768px) {
    .sub-footer .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .copyright {
        align-items: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .social-footer {
        margin-top: 10px;
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.whatsapp-btn, .scroll-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-btn {
    background-color: #25D366; /* WhatsApp green */
}

.scroll-top {
    background-color: var(--primary-orange);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-btn:hover {
    background-color: #128C7E; /* Darker WhatsApp green */
    transform: translateY(-3px) scale(1.05);
}

.scroll-top:hover {
    background-color: #142045;
    transform: translateY(-3px) scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn, .scroll-top {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}