/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #211f1f;
    --accent-color: #d0dae0;
    --light-color: #f9f9f9;
    --dark-color: #434547;
    --text-color: #333;
    --text-light: #777;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-color);
}

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

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

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

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-light {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

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

.btn-light:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
}

#logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo-highlight {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.nav-cta {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.nav-cta:hover {
    background-color: #c0392b;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Navbar Layout Fix */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Push menu to center area */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

/* Keep social icons at extreme right */
.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 30px;
}










/* Make sure full height is applied correctly */
.hero,
.hero-slider,
.swiper {
    height: 100vh;
}

.swiper-wrapper {
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;      /* vertical center */
    justify-content: center;  /* horizontal center */
    text-align: center;
}

/* Ensure content stays centered */
.slide-content {
    margin: 0 auto;
}

















/* Hero Section */
.hero {
    height: 100vh;
    margin-top: 80px;
    position: relative;
}

.hero-slider {
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.slide-1 {
    background-image: url('../img/slide1.webp');
}

.slide-2 {
    background-image: url('../img/slide2.webp');
}

.slide-3 {
    background-image: url('../img/slide3.webp');
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 100px;
}

.slide-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.slide-content .btn-primary {
    animation: fadeInUp 1s ease 0.4s both;
}

.swiper-button-next, .swiper-button-prev {
    color: white;
}

.swiper-pagination-bullet {
    background-color: white;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
}

/* About Preview */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

.image-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background-color: var(--secondary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials-slider {
    padding: 20px 0 50px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin: 20px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.client-logo {
    background-color: white;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 20px;
}

.logo-placeholder {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #222;
    color: #ddd;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.social-links .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
}



























/* Additional Styles for Other Pages */

/* Page Hero */
.page-hero {
    background: 
                url('../img/4.jpg.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 80px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Story */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Director Section */
.director-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.director-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.director-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.director-quote {
    background-color: white;
    padding: 20px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 30px;
    box-shadow: var(--shadow);
    border-radius: 0 5px 5px 0;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card {
    text-align: center;
    padding: 40px 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Services Detail */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse .service-info {
    direction: ltr;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background-color: white;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    background-color: var(--secondary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 5px;
}

.contact-text a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--secondary-color);
}

/* Contact Form */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Error and Success Messages */
.error {
    border-color: #e74c3c !important;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
}

.success-message {
    background-color: #2ecc71;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.success-message i {
    margin-right: 10px;
}

/* Map Section */
.map-section {
    padding: 80px 0 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

/* Hours Section */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hours-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.hours-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hours-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.hours-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.hours-list span {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    min-width: 150px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .story-grid,
    .director-grid,
    .service-detail,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail.reverse {
        direction: ltr;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
}














/* About Page Specific Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.7)), 
                url('/img/4.jpg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 180px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Company Story */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
}

.image-frame {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.image-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.story-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

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

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

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

/* Director Section */
.director-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.director-image {
    position: relative;
}

.director-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    border-radius: 0 0 15px 15px;
}

.director-overlay h4 {
    color: white;
    margin-bottom: 5px;
}

.director-overlay p {
    color: #ddd;
    font-size: 0.9rem;
}

.director-title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.director-quote {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    position: relative;
    box-shadow: var(--shadow);
}

.director-quote i:first-child {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.director-quote i:last-child {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.director-quote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.director-expertise {
    margin-top: 30px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.expertise-tags span {
    background-color: #f0f0f0;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: var(--transition);
}

.expertise-tags span:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Mission Section */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    text-align: center;
    padding: 50px 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.mission-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.mission-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.mission-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Why Choose Us - About Version */
.about-why .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-box {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

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

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0,0,0,0.05);
    z-index: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.team-member {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
}

.member-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.member-exp {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.member-skills span {
    background-color: #f5f5f5;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

.team-stat h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.team-stat p {
    color: var(--text-light);
    font-weight: 500;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #ddd;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.process-step:nth-child(odd) .step-content {
    margin-right: 40px;
    margin-left: 0;
}

.process-step:nth-child(even) .step-content {
    margin-left: 40px;
    margin-right: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.step-content {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin: 0 40px;
    position: relative;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: white;
    transform: translateY(-50%) rotate(45deg);
}

.process-step:nth-child(odd) .step-content::before {
    right: -10px;
}

.process-step:nth-child(even) .step-content::before {
    left: -10px;
}

.step-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonial-content i:first-child {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 20px;
    display: block;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

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

.testimonial-rating {
    color: #FFD700;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 2.8rem;
    }
    
    .story-grid,
    .director-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: row !important;
        text-align: left !important;
    }
    
    .step-number {
        left: 30px;
        transform: none;
    }
    
    .step-content {
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .process-step:nth-child(odd) .step-content::before,
    .process-step:nth-child(even) .step-content::before {
        left: -10px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 150px 0 80px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .mission-grid,
    .about-why .features-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .expertise-tags {
        justify-content: center;
    }
    
    .team-stat h3 {
        font-size: 2.5rem;
    }
    
    .step-content {
        padding: 20px;
    }
}











/* Services Page Specific Styles */

/* Services Hero */
.services-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.7)), 
                url('/img/5.jpg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-breadcrumb {
    margin-top: 30px;
    color: rgba(255,255,255,0.8);
}

.hero-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.hero-breadcrumb a:hover {
    color: var(--secondary-color);
}

.hero-breadcrumb span {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Services Overview */
.services-category-tabs {
    margin-top: 40px;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.category-tab {
    background-color: white;
    border: 2px solid #eee;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-tab::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.1rem;
}

.category-tab[data-category="architecture"]::before {
    content: '\f1ad'; /* building icon */
}

.category-tab[data-category="interior"]::before {
    content: '\f4b8'; /* couch icon */
}

.category-tab[data-category="landscape"]::before {
    content: '\f1bb'; /* tree icon */
}

.category-tab[data-category="commercial"]::before {
    content: '\f54e'; /* store icon */
}

.category-tab[data-category="supporting"]::before {
    content: '\f7d9'; /* tools icon */
}

.category-tab:hover,
.category-tab.active {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.2);
}

/* Service Categories */
.service-category {
    display: none;
    padding: 80px 0;
}

.service-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.category-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.category-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Detail Cards */
.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse .service-info {
    direction: ltr;
}

.service-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-image:hover .service-img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-image:hover .service-overlay {
    opacity: 1;
}

.view-gallery {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.view-gallery:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

.service-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 30px;
}

.service-features {
    margin-bottom: 30px;
}

.service-features h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.service-features i {
    color: var(--secondary-color);
    margin-right: 12px;
    margin-top: 5px;
    flex-shrink: 0;
}

.service-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.stat h4 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

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

.service-benefits {
    margin: 30px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: var(--transition);
}

.benefit:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.benefit:hover i {
    color: white;
}

.benefit i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.service-specialties {
    margin: 30px 0;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.specialties span {
    background-color: #f0f0f0;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: var(--transition);
}

.specialties span:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Services Grid for Commercial */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-item-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.service-item p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-item ul {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.service-item li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.service-item li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 10px;
}

/* Supporting Services */
.supporting-services {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.supporting-service {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.supporting-icon {
    width: 80px;
    height: 80px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.supporting-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.supporting-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tags span {
    background-color: #f0f0f0;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-color);
}

/* Why Choose Our Services */
.services-why-choose .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.why-choose-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0,0,0,0.05);
}

.why-choose-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.why-choose-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Steps Circle */
.process-steps-circle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.process-circle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}

.process-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px dashed #eee;
    border-radius: 50%;
    z-index: 1;
}

.circle-step {
    background-color: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    transition: var(--transition);
    cursor: pointer;
}

.circle-step.active,
.circle-step:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
}

.circle-step.active .step-icon,
.circle-step:hover .step-icon {
    background-color: white;
    color: var(--secondary-color);
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.circle-step h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.circle-step p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.process-content {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.step-detail {
    display: none;
}

.step-detail.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.step-detail h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.step-detail p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-color);
}

.step-detail ul {
    list-style: none;
    margin-top: 20px;
}

.step-detail li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.step-detail li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 15px;
}

/* FAQ Section */
.services-faq .faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

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

.faq-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 25px;
    text-align: left;
    background-color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question.active {
    background-color: var(--primary-color);
    color: white;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 25px;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.faq-answer strong {
    color: var(--primary-color);
}

/* Portfolio Preview */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.portfolio-image {
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(44, 62, 80, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.portfolio-overlay p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.view-project {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: var(--transition);
    align-self: flex-start;
}

.view-project:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

/* Services CTA */
.services-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.cta-note i {
    margin-right: 5px;
}

/* Responsive Design for Services Page */
@media (max-width: 1200px) {
    .process-steps-circle {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-circle::before {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 992px) {
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-card.reverse {
        direction: ltr;
    }
    
    .service-img {
        height: 400px;
    }
    
    .services-faq .faq-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .category-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-tab {
        justify-content: center;
    }
    
    .service-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .supporting-service {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .supporting-icon {
        margin: 0 auto;
    }
    
    .services-why-choose .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .process-circle {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-circle::before {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-note {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .service-info h3 {
        font-size: 1.8rem;
    }
    
    .circle-step {
        padding: 20px 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}









/* Contact Page Specific Styles */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.7)), 
                url('/img/5.jpg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Quick Contact Bar */
.quick-contact-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: var(--transition);
    text-decoration: none;
    color: white;
}

.quick-contact-item:not([href]) {
    cursor: default;
}

.quick-contact-item:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.quick-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.quick-content h4 {
    margin-bottom: 5px;
    font-size: 1rem;
    opacity: 0.9;
}

.quick-content p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact Main Grid */
.contact-main-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
}

.contact-info-card,
.office-hours-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-info-card h3,
.office-hours-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info-card > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-icon {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.detail-content p,
.detail-content a {
    color: var(--text-color);
    text-decoration: none;
    line-height: 1.5;
}

.detail-content a:hover {
    color: var(--secondary-color);
}

.social-contact-links h4 {
    margin-bottom: 15px;
    color: var(--text-light);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon.twitter {
    background-color: #1da1f2;
}

.social-icon.youtube {
    background-color: #ff0000;
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.social-icon:not(.disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Office Hours */
.hours-list {
    margin-bottom: 30px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--text-color);
}

.time {
    color: var(--secondary-color);
    font-weight: 600;
}

.emergency-contact h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.emergency-contact p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.emergency-btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.2);
}

/* Contact Form */
.contact-form-main {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.form-intro p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group label i {
    color: var(--secondary-color);
}

.file-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: normal;
    margin-left: auto;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232c3e50' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
}

/* Project Type Options */
.project-type-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.project-type-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.project-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.project-type-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--secondary-color);
}

.project-type-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.radio-label i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.project-type-option:hover {
    border-color: var(--secondary-color);
    background-color: rgba(231, 76, 60, 0.05);
}

.project-type-option input[type="radio"]:checked ~ .radio-label {
    color: var(--secondary-color);
}

/* Character Counter */
.char-count {
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

.char-count span {
    font-weight: 600;
    color: var(--primary-color);
}

/* File Upload */
.file-upload-label {
    display: block;
    margin-bottom: 15px;
}

.file-upload-area {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.file-upload-area:hover {
    border-color: var(--secondary-color);
    background-color: rgba(231, 76, 60, 0.05);
}

.file-upload-area i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 15px;
    transition: var(--transition);
}

.file-upload-area:hover i {
    color: var(--secondary-color);
}

.file-upload-area p {
    color: var(--text-light);
    margin-bottom: 0;
}

.browse-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.file-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-icon {
    color: var(--secondary-color);
}

.file-name {
    font-weight: 500;
}

.file-size {
    color: var(--text-light);
    font-size: 0.85rem;
}

.remove-file {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

/* Form Footer */
.form-footer {
    margin-top: 40px;
}

.privacy-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.privacy-notice input[type="checkbox"] {
    margin-top: 5px;
    flex-shrink: 0;
}

.privacy-notice label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.privacy-link {
    color: var(--secondary-color);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.2);
}

.btn-loading {
    display: none;
}

/* Form Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 50px 30px;
    background-color: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #2ecc71;
}

.form-success.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2rem;
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.success-details {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
}

.success-details p {
    margin-bottom: 10px;
}

.success-details strong {
    color: var(--primary-color);
}

#refNumber {
    color: var(--secondary-color);
    font-weight: 600;
}

.new-inquiry-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.new-inquiry-btn:hover {
    background-color: #1a252f;
    transform: translateY(-3px);
}

/* Location Map */
.location-map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.interactive-map {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-info-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.map-info-card h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.map-address {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.map-address i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.map-address p {
    line-height: 1.6;
}

.map-address strong {
    color: var(--primary-color);
}

.map-directions h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.transport-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.transport-option i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.transport-option p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.directions-btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

/* Contact FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.faq-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.faq-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.faq-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Contact */
.contact-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-contact-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team-contact-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.team-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-contact-card:hover .team-contact-image img {
    transform: scale(1.05);
}

.team-contact-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.team-contact-info {
    padding: 30px;
}

.team-contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.team-contact-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.team-contact-desc {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.team-contact-methods {
    display: flex;
    gap: 15px;
}

.contact-method {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-method:hover {
    background-color: var(--secondary-color);
    color: white;
}

.contact-method:hover i {
    color: white;
}

.contact-method i {
    color: var(--secondary-color);
    transition: var(--transition);
}

/* Contact CTA */
.contact-cta .cta-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-stats {
    display: flex;
    gap: 30px;
}

.cta-stat h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.cta-stat p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-btn i {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background-color: rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-btn span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.cta-btn p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.call-btn i {
    color: var(--secondary-color);
}

.whatsapp-btn i {
    color: #25D366;
}

.email-btn i {
    color: #3498db;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-note i {
    color: #2ecc71;
}

/* Error Messages */
.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Loading State */
.loading .btn-text {
    display: none;
}

.loading .btn-loading {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Design for Contact Page */
@media (max-width: 1200px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-sidebar {
        position: static;
    }
    
    .map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-cta .cta-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-stats {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .project-type-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-type-options {
        grid-template-columns: 1fr;
    }
    
    .contact-team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .team-contact-methods {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-main,
    .contact-info-card,
    .office-hours-card {
        padding: 25px;
    }
    
    .contact-form {
        padding: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .interactive-map {
        height: 350px;
    }
    
    .form-footer {
        text-align: center;
    }
    
    .privacy-notice {
        flex-direction: column;
        align-items: flex-start;
    }
}









/* Floating Social Icons */
.floating-social {
    position: fixed;
    left: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-4px);
    opacity: 0.9;
}

.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: #e4405f; }
.social-btn.whatsapp { background: #25d366; }

/* Back To Top Button */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: #333;
    transform: translateY(-4px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .floating-social {
        left: 10px;
        bottom: 90px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        right: 15px;
    }
}










/* Experience Highlight Section */
.experience-highlight {
    background: #f4f4f4;
}

.experience-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.experience-left {
    flex: 1;
    min-width: 300px;
}

.experience-title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.experience-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    max-width: 600px;
}

.experience-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 60px;
    min-width: 250px;
}

.exp-stat h3 {
    font-size: 70px;
    font-weight: 600;
    margin: 0;
    color: #000;
}

.exp-stat p {
    font-size: 18px;
    margin-top: 10px;
    color: #333;
}

.exp-divider {
    margin-top: 50px;
    height: 1px;
    background: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
    .experience-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .experience-right {
        justify-content: center;
    }

    .experience-text {
        margin: 0 auto;
    }
}











body {
    font-family: 'Montserrat', sans-serif;
}












/* Projects Section */
.projects-section {
    background: #f8f8f8;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.project-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
    text-align: center;
}

.project-overlay h3 {
    font-size: 20px;
    letter-spacing: 1px;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

/* Custom Sizes */
.project-item.large {
    grid-row: span 2;
}

.project-item.wide {
    grid-column: span 2;
}

/* Responsive */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .project-item.large,
    .project-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}











/* Contact Combined Section */
.contact-grid {
    display: flex;
    gap: 50px;
    align-items: stretch;
    margin-top: 40px;
}

.contact-form-side {
    flex: 1;
}

.contact-form-side form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-side input {
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 15px;
    width: 100%;
}

.contact-map-side {
    flex: 1;
    min-height: 450px;
}

.contact-map-side iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column;
    }

    .contact-map-side {
        height: 350px;
    }
}