* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a5f7a;
    --primary-dark: #0f4c64;
    --secondary: #ff9800;
    --secondary-dark: #e68900;
    --light: #f8f9fa;
    --dark: #333333;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.underline {
    height: 4px;
    width: 80px;
    background-color: var(--secondary);
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Header & Navigation */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

.logo-text {
    font-size: 1.8rem;
    line-height: 1;
}

.logo-subtext {
    font-size: 0.9rem;
    color: var(--secondary);
    letter-spacing: 1.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark);
    transition: var(--transition);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1600&q=80');
}

.slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)), url('img/slide2.png');
}

.slide:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)), url('img/slide3.png');
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.slide-tagline {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.slide-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary);
    transform: scale(1.2);
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 0;
    background-color: var(--light);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--dark);
}

.welcome-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0;
}

.welcome-image img {
    width: 80%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Why Choose Us */
.why-choose-section {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--gray);
}

/* Recent Projects */
.projects-section {
    padding: 5rem 0;
    background-color: var(--light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-category {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.project-category.residential {
    background-color: var(--primary);
}

.project-category.commercial {
    background-color: var(--secondary);
}

.project-category.mixed {
    background-color: #6c757d;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.project-info p {
    color: var(--gray);
    margin-bottom: 1.2rem;
}

.project-link {
    color: var(--secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.project-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.project-link:hover {
    color: var(--secondary-dark);
}

.project-link:hover i {
    transform: translateX(5px);
}

/* Special Icons Section */
.special-icons-section {
    padding: 4rem 0;
}

.special-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.special-icon-item {
    text-align: center;
}

.special-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.special-icon-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.special-icon-item p {
    color: var(--gray);
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3,
.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after,
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary);
    margin-top: 5px;
}


.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .features-grid,
    .projects-grid,
    .special-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slide-tagline {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1.5rem 0;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .welcome-stats {
        justify-content: space-around;
    }
    
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-tagline {
        font-size: 1.8rem;
    }
    
    .slide-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .features-grid,
    .projects-grid,
    .special-icons-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .welcome-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .slider-nav {
        gap: 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
}



/* Header height control */
.header {
    width: 100%;
    background: #fff;
}

/* Navbar alignment */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo wrapper */
.logo {
    display: flex;
    align-items: center;
    height: 60px; /* adjust if your header height is different */
}

/* Logo image fitting */
.logo img {
    height: 140%;
    max-height: 82px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .logo {
        height: 70px;
    }

    .logo img {
        max-height: 90px;
    }
}



/* Social Links and Back to Top Container */
.floating-social-container {
    position: fixed;
    right: 30px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 999;
}

/* Social Media Icons */
.floating-social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-social-icons.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: white;
    font-size: 1.1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.floating-social-icons a i {
    transition: transform 0.3s ease;
}

.floating-social-icons a:hover i {
    transform: scale(1.2);
}

.floating-social-icons a:hover {
    transform: translateY(-3px);
}

.floating-social-icons a::after {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background-color: var(--dark);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.floating-social-icons a:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.floating-social-icons .facebook {
    background-color: #1877F2;
}

.floating-social-icons .facebook::after {
    content: 'Facebook';
}

.floating-social-icons .twitter {
    background-color: #1DA1F2;
}

.floating-social-icons .twitter::after {
    content: 'Twitter';
}

.floating-social-icons .linkedin {
    background-color: #0A66C2;
}

.floating-social-icons .linkedin::after {
    content: 'LinkedIn';
}

.floating-social-icons .instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.floating-social-icons .instagram::after {
    content: 'Instagram';
}

.floating-social-icons .whatsapp {
    background-color: #25D366;
}

.floating-social-icons .whatsapp::after {
    content: 'WhatsApp';
}

.floating-social-icons .youtube {
    background-color: #FF0000;
}

.floating-social-icons .youtube::after {
    content: 'YouTube';
}

/* Back to Top Button */
.back-to-top {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
}

/* Social Toggle Button (for mobile) */
.social-toggle {
    display: none;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.social-toggle:hover {
    background-color: var(--primary-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-social-container {
        right: 20px;
        bottom: 90px;
    }
    
    .social-toggle {
        display: flex;
    }
    
    .floating-social-icons {
        position: fixed;
        right: 20px;
        bottom: 160px;
        flex-direction: column;
        display: none;
    }
    
    .floating-social-icons.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .floating-social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .floating-social-icons a::after {
        right: 100%;
        top: 50%;
        transform: translateY(-50%) translateX(-10px);
        font-size: 0.75rem;
        padding: 5px 8px;
    }
    
    .floating-social-icons a:hover::after {
        transform: translateY(-50%) translateX(0);
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 30px;
        right: 20px;
    }
}




/* Profile Page Specific Styles */

/* Profile Hero Section */
.profile-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0 5rem;
    
    margin-top: 0;
}

.profile-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.9;
}

/* Quote Section */
.quote-section {
    background-color: var(--light);
    padding: 5rem 0;
    text-align: center;
}

.quote-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    border-left: 5px solid var(--secondary);
}

.quote-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.quote-text {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.quote-author {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 500;
}

/* Director Profile Section */
.director-profile {
    padding: 6rem 0;
}

.director-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 4rem;
}

.director-image {
    text-align: center;
    position: sticky;
    top: 100px;
}

.director-img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.director-contact {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: left;
}

.director-contact h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background-color: white;
    border-radius: 5px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-right: 15px;
    width: 25px;
}

.contact-item span {
    font-weight: 500;
    color: var(--dark);
}

.director-details h2 {
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.director-title {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-weight: 500;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.director-info {
    margin-bottom: 3rem;
}

.director-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark);
}

/* Expertise Section */
.expertise-section {
    margin-bottom: 3rem;
}

.expertise-section h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.expertise-item {
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    transition: var(--transition);
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.expertise-item i {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.expertise-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.expertise-item p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* Experience Section */
.experience-section {
    background-color: var(--light);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.experience-section h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.experience-content {
    margin-bottom: 3rem;
}

.experience-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark);
}

.companies-section {
    text-align: center;
}

.companies-section h4 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.companies-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.company-logo {
    background-color: white;
    padding: 1.5rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    font-size: 1.2rem;
}

.company-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--secondary);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background-color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light);
    border-radius: 10px;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.value-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Responsive Styles for Profile Page */
@media (max-width: 992px) {
    .director-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .director-image {
        position: static;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quote-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .profile-hero h1 {
        font-size: 2.5rem;
    }
    
    .profile-hero p {
        font-size: 1.1rem;
    }
    
    .quote-box {
        padding: 2.5rem 2rem;
    }
    
    .quote-text {
        font-size: 1.3rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .companies-logos {
        gap: 1rem;
    }
    
    .company-logo {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .director-details h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .profile-hero {
        padding: 6rem 0 4rem;
    }
    
    .profile-hero h1 {
        font-size: 2rem;
    }
    
    .quote-section {
        padding: 3rem 0;
    }
    
    .director-profile {
        padding: 4rem 0;
    }
    
    .experience-section {
        padding: 2rem;
    }
}



/* ==============================
   PROJECT PAGE STYLES
   ============================== */

/* Projects Hero Section */
.projects-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0 5rem;
   
    margin-top: 0;
}

.projects-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.projects-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.9;
}

/* Projects Filter */
.projects-filter {
    padding: 3rem 0;
    background-color: var(--light);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    background-color: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Projects Gallery */
.projects-gallery {
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

.gallery-item.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .project-overlay {
    opacity: 1;
}

.project-info {
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: rgb(255 152 0);
}

.project-info p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.project-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-status.completed {
    background-color: #4CAF50;
    color: white;
}

.project-status.ongoing {
    background-color: #FF9800;
    color: white;
}

/* Project Stats */
.project-stats {
    padding: 5rem 0;
    background-color: var(--primary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Project CTA */
.project-cta {
    padding: 6rem 0;
    background-color: var(--light);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--secondary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-nav-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

.lightbox-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px;
}

/* Responsive Styles for Projects Page */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .projects-hero {
        padding: 6rem 0 4rem;
    }
    
    .projects-hero h1 {
        font-size: 2.3rem;
    }
    
    .projects-hero p {
        font-size: 1.1rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .project-image {
        height: 250px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 80%;
        margin-bottom: 0.5rem;
    }
    
    .projects-gallery {
        padding: 3rem 0;
    }
    
    .project-cta {
        padding: 4rem 0;
    }
}



/* ==============================
   CONTACT PAGE STYLES
   ============================== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0 5rem;
  
    margin-top: 0;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.9;
}

/* Company Identity Section */
.company-identity {
    padding: 4rem 0;
    background-color: var(--primary);
    color: white;
}

.identity-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.identity-logo {
    flex: 1;
    min-width: 300px;
}

.logo-display {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-main {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    color: white;
}

.logo-sub {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--light-gray);
}

.logo-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 1px;
}

.identity-address {
    flex: 1;
    min-width: 300px;
}

.identity-address h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.address-main {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.address-detail {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-point {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-point i {
    font-size: 1.5rem;
    color: var(--secondary);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-point h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--secondary);
}

.contact-point p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: var(--light);
}



#map {
    height: 500px;
    width: 100%;
    border-radius: 10px 0 0 10px;
}

.map-info {
    padding: 2rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.map-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}

.map-info i {
    color: var(--secondary);
    width: 20px;
}

.transport-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.transport-info h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.transport-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray);
}

.transport-option i {
    color: var(--primary);
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form h2,
.contact-info h2 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    min-height: 1.2rem;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* Contact Info */
.info-items {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-content p {
    color: var(--gray);
    line-height: 1.6;
}

.emergency-contact {
    background-color: #fff8e1;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.emergency-contact h3 {
    color: #e65100;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.emergency-contact > p {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.emergency-phone {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: #e65100 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question::before {
    content: "Q.";
    color: var(--secondary);
    font-weight: 700;
}

.faq-answer {
    color: var(--gray);
    line-height: 1.7;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .map-container {
        grid-template-columns: 1fr;
    }
    
    #map {
        border-radius: 10px 10px 0 0;
        height: 400px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 4rem;
    }
    
    .contact-hero h1 {
        font-size: 2.3rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .identity-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-point {
        justify-content: center;
    }
    
    .logo-main {
        font-size: 2.8rem;
    }
    
    .map-info {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .logo-main {
        font-size: 2.2rem;
    }
    
    .logo-sub {
        font-size: 1.2rem;
    }
    
    .address-main {
        font-size: 1.3rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .info-icon {
        margin-bottom: 1rem;
    }
    
    .transport-options {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .faq-section {
        padding: 3rem 0;
    }
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: var(--light);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 10px;
}

/* Social Toggle Button (Mobile Only) */
.social-toggle {
    display: none;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    position: fixed;
    right: 20px;
    bottom: 95px;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.social-toggle:hover {
    background-color: var(--primary-dark);
}

/* Mobile View */
@media (max-width: 768px) {

    /* Show toggle only on mobile */
    .social-toggle {
        display: flex;
    }

    /* Social container position */
    .floating-social-container {
        position: fixed;
        right: 20px;
        bottom: 150px;
        z-index: 1000;
    }

    /* Hide icons by default */
    .floating-social-icons {
        display: none;
        flex-direction: column;
        gap: 10px;
    }

    /* Show icons when active */
    .floating-social-icons.active {
        display: flex;
        animation: slideUp 0.3s ease forwards;
    }

    /* Icon size */
    .floating-social-icons a {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Back to top button fix */
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 30px;
        right: 20px;
    }
}

/* Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* QR footer column */
.qr-column {
    text-align: left;
}

/* QR container */
.qr-box {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
}

/* QR image styling */
.qr-box img {
    width: 110px;
    height: 110px;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    object-fit: contain;
}

/* Mobile fix */
@media (max-width: 768px) {
    .qr-column {
        text-align: center;
    }

    .qr-box {
        justify-content: center;
    }

    .qr-box img {
        width: 100px;
        height: 100px;
    }
}
.find-us-section {
    padding: 60px 20px;
    background: #f5f7f9;
}

.find-us-card {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    border-radius: 10px;
    padding: 25px 25px 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.find-us-card h2 {
    margin: 0;
    font-size: 26px;
    color: #0d2c3e;
}

.find-us-card .subtitle {
    margin: 6px 0 18px;
    color: #666;
    font-size: 15px;
}

.map-wrapper {
    width: 100%;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

.map-info i {
    color: var(--primary);
    font-size: 16px;
}

/* Mobile */
@media (max-width: 768px) {
    .map-wrapper {
        height: 300px;
    }

    .find-us-card h2 {
        font-size: 22px;
    }
}
