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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

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

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

.bg-light {
    background-color: #f5f5f5;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

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

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    color: #666;
}

.highlight {
    color: #3a506b;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3a506b, #5bc0be);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

h2:hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Header & Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.logo h1 {
    font-size: 1.8rem;
    color: #3a506b;
    margin-bottom: 5px;
}

.logo .tagline {
    font-size: 0.9rem;
    color: #5bc0be;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #5bc0be;
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3a506b;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #3a506b;
    transition: all 0.3s ease;
}

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

.hero-slider .swiper-slide {
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.slide-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.314), rgba(0, 0, 0, 0.193)), url('img/contact.banner.png');
    background-size: cover;
    background-position: center;
}

.slide-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.314), rgba(0, 0, 0, 0.193)), url('img/slide2.jpeg');
    background-size: cover;
    background-position: center;
}

.slide-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.314), rgba(0, 0, 0, 0.193)), url('img/slide3.png');
    background-size: cover;
    background-position: center;
}
.slide-4 {
    background: linear-gradient(rgba(0, 0, 0, 0.314), rgba(0, 0, 0, 0.193)), url('img/about-banner.jpeg');
    background-size: cover;
    background-position: center;
}
.slide-5 {
    background: linear-gradient(rgba(0, 0, 0, 0.314), rgba(0, 0, 0, 0.193)), url('img/services-banner.png');
    background-size: cover;
    background-position: center;
}
.slide-6 {
    background: linear-gradient(rgba(0, 0, 0, 0.314), rgba(0, 0, 0, 0.193)), url('img/slide1.jpeg');
    background-size: cover;
    background-position: center;
}


.hero-content {
    color: #fff;
    max-width: 700px;
    animation: fadeInUp 1s ease;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.hero-content h3 {
    font-size: 1.8rem;
    color: #f5f5f5;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
    max-width: 600px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(90deg, #3a506b, #5bc0be);
    color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(58, 80, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(58, 80, 107, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #5bc0be, #3a506b);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-secondary {
    background: transparent;
    color: #3a506b;
    border: 2px solid #3a506b;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #3a506b;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(58, 80, 107, 0.2);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #777;
}

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

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, #3a506b, #5bc0be);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

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

.service-icon {
    font-size: 3rem;
    color: #5bc0be;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 15px;
    color: #3a506b;
}

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

.feature-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.2rem;
    color: #fff;
    background: linear-gradient(135deg, #3a506b, #5bc0be);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(91, 192, 190, 0.3);
}

.feature-item h3 {
    margin-bottom: 15px;
    color: #3a506b;
}

/* About Section */
.about {
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.about-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #3a506b;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.image-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    color: #5bc0be;
}

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

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

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

.testimonial-content p {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: -10px;
    top: -20px;
    color: #e8e8e8;
    font-family: Georgia, serif;
}

.client-info {
    margin-bottom: 15px;
}

.client-info h4 {
    color: #3a506b;
    margin-bottom: 5px;
}

.client-info p {
    color: #777;
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: #f6f6f6;
    color: #fff;
    padding: 80px 0 30px;
}

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

.footer-col h3, .footer-col h4 {
    color: #423636;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after, .footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #5bc0be;
}

.footer-tagline {
    color: #5bc0be;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-about {
    color: #000000;
    margin-bottom: 25px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color:#432323;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #020202;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    margin-bottom: 20px;
}

.contact-info i {
    color: #5bc0be;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-info strong {
    display: block;
    color: #353030;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-info p {
    color: #5d5454;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #5bc0be;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #3a506b;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(58, 80, 107, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #5bc0be;
    transform: translateY(-5px);
}

/* Swiper Customization */
.swiper-button-next, .swiper-button-prev {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(91, 192, 190, 0.8);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #5bc0be;
}

.testimonials-slider .swiper-pagination-bullet {
    background-color: rgba(58, 80, 107, 0.3);
}

.testimonials-slider .swiper-pagination-bullet-active {
    background-color: #5bc0be;
}

/* Responsive Design */
@media (max-width: 992px) {
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
}

@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: 80px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h3 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .about-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .service-card, .feature-item, .testimonial-card {
        padding: 30px 20px;
    }
}

























/* ========== ABOUT PAGE STYLES ========== */

/* About Hero Section */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(28, 37, 65, 0.182), rgba(58, 80, 107, 0.237)), url('img/about-banner.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    animation: fadeInUp 1s ease;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.about-hero-content .subtitle {
    font-size: 1.3rem;
    color: #f0f0f0;
    font-weight: 300;
    margin-bottom: 15px;
}

.about-hero-content p {
    font-size: 1.1rem;
    color: #ddd;
    max-width: 600px;
    margin: 0 auto;
}

/* About Description Section */
.about-description {
    background-color: #fff;
    position: relative;
}

.about-description-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-description-text .lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #3a506b;
    font-weight: 500;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.about-description-text .emphasis {
    font-size: 1.2rem;
    color: #5bc0be;
    font-weight: 600;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.quote-card {
    background: linear-gradient(135deg, #f9f9f9, #f5f5f5);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

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

.quote-icon {
    font-size: 3rem;
    color: #5bc0be;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.quote-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-author i {
    font-size: 2.5rem;
    color: #3a506b;
}

.quote-author strong {
    display: block;
    color: #3a506b;
    font-size: 1.1rem;
}

.quote-author span {
    color: #777;
    font-size: 0.9rem;
}

/* Vision Mission Section */
.vision-mission {
    background-color: #f5f5f5;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-card, .mission-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(58, 80, 107, 0.1);
}

.vision-card::before, .mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, #3a506b, #5bc0be);
    transition: height 0.4s ease;
}

.vision-card:hover::before, .mission-card:hover::before {
    height: 100%;
}

.vision-icon, .mission-icon {
    font-size: 3rem;
    color: #5bc0be;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.vision-card:hover .vision-icon,
.mission-card:hover .mission-icon {
    transform: scale(1.2) rotate(5deg);
}

.vision-card h2, .mission-card h2 {
    margin-bottom: 25px;
    font-size: 2rem;
}

.vision-card p, .mission-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.vision-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3a506b;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.stat-label {
    color: #777;
    font-size: 0.9rem;
}

.mission-list {
    list-style: none;
}

.mission-list li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-list i {
    color: #5bc0be;
    font-size: 1.2rem;
}

/* Founder Section */
.founder {
    background-color: #fff;
}

.founder-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.image-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(58, 80, 107, 0.2);
}

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

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(58, 80, 107, 0.9), transparent);
    padding: 30px 20px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.image-frame:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
}

.founder-details h3 {
    font-size: 2.2rem;
    color: #3a506b;
    margin-bottom: 10px;
}

.qualification {
    color: #5bc0be;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3a506b, #5bc0be);
    margin-bottom: 25px;
}

.bio {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.signature p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #3a506b;
    margin-bottom: 5px;
}

.signature .designation {
    font-size: 0.9rem;
    color: #777;
    font-family: 'Montserrat', sans-serif;
}

/* Services Overview Section */
.services-overview {
    background-color: #f5f5f5;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-overview-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-overview-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3a506b, #5bc0be);
    transition: width 0.4s ease;
}

.service-overview-item:hover::after {
    width: 100%;
}

.service-overview-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(58, 80, 107, 0.1);
}

.service-overview-icon {
    font-size: 2.5rem;
    color: #5bc0be;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.service-overview-item:hover .service-overview-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-overview-item h3 {
    color: #3a506b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-overview-item p {
    color: #777;
    font-size: 0.95rem;
}

/* Philosophy Section */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.philosophy-card {
    background-color: #fff;
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(91, 192, 190, 0.1), transparent);
    transition: height 0.4s ease;
}

.philosophy-card:hover::before {
    height: 100%;
}

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

.philosophy-icon {
    font-size: 2.5rem;
    color: #5bc0be;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.philosophy-card:hover .philosophy-icon {
    transform: scale(1.2) rotate(5deg);
}

.philosophy-card h3 {
    color: #3a506b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.philosophy-card p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(rgba(28, 37, 65, 0.9), rgba(58, 80, 107, 0.95)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

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

.cta-content h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: #ddd;
    font-size: 1.2rem;
    margin-bottom: 35px;
}

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

/* Responsive Styles for About Page */
@media (max-width: 1200px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .about-description-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        margin-top: 70px;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-content .subtitle {
        font-size: 1.1rem;
    }
    
    .services-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .quote-card {
        padding: 30px 20px;
    }
    
    .vision-card, .mission-card {
        padding: 40px 25px;
    }
}
















/* ========== SERVICES PAGE STYLES ========== */

/* Services Hero Section */
.services-hero {
    height: 60vh;
    background: linear-gradient(rgba(28, 37, 65, 0.182), rgba(58, 80, 107, 0.237)), url('img/2\ \(1\).png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    animation: fadeInUp 1s ease;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.services-hero-content .subtitle {
    font-size: 1.3rem;
    color: #f0f0f0;
    font-weight: 300;
    margin-bottom: 15px;
}

.services-hero-content p {
    font-size: 1.1rem;
    color: #ddd;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Mini Cards */
.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-mini-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-mini-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3a506b, #5bc0be);
    transition: width 0.4s ease;
}

.service-mini-card:hover::before {
    width: 100%;
}

.service-mini-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(58, 80, 107, 0.1);
}

.service-mini-icon {
    font-size: 2.2rem;
    color: #5bc0be;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.service-mini-card:hover .service-mini-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-mini-card h3 {
    font-size: 1rem;
    color: #3a506b;
    margin-bottom: 0;
}

/* Zig Zag Services Section */
.zigzag-services {
    background-color: #f9f9f9;
    padding-bottom: 60px;
}

.zigzag-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.zigzag-item.reverse {
    direction: rtl;
}

.zigzag-item.reverse .zigzag-content {
    direction: ltr;
}

.zigzag-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    height: 400px;
}

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

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

.image-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(58, 80, 107, 0.8), rgba(58, 80, 107, 0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: #fff;
}

.image-wrapper:hover .image-overlay-content {
    opacity: 1;
}

.image-overlay-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fff;
}

.image-overlay-content span {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.zigzag-content {
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    position: relative;
    transition: all 0.4s ease;
}

.zigzag-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(58, 80, 107, 0.1);
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, #3a506b, #5bc0be);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(58, 80, 107, 0.3);
}

.zigzag-content h2 {
    font-size: 2.2rem;
    color: #3a506b;
    margin-bottom: 10px;
}

.zigzag-content h3 {
    font-size: 1.2rem;
    color: #5bc0be;
    font-weight: 500;
    margin-bottom: 20px;
}

.zigzag-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-features li {
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: #5bc0be;
    font-size: 1.1rem;
}

/* Process Section */
.process {
    background-color: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 40px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(58, 80, 107, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3a506b, #5bc0be);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(58, 80, 107, 0.3);
}

.step-icon {
    font-size: 2.5rem;
    color: #5bc0be;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.2) rotate(5deg);
}

.process-step h3 {
    color: #3a506b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-step p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Services CTA Section */
.services-cta {
    background: linear-gradient(rgba(28, 37, 65, 0.182), rgba(58, 80, 107, 0.237)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-mini-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .services-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .zigzag-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .zigzag-item.reverse {
        direction: ltr;
    }
    
    .image-wrapper {
        height: 350px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 50vh;
        margin-top: 70px;
    }
    
    .services-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .services-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .zigzag-content {
        padding: 30px 25px;
    }
    
    .zigzag-content h2 {
        font-size: 1.8rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .services-mini-grid {
        grid-template-columns: 1fr;
    }
    
    .service-mini-card {
        padding: 25px;
    }
    
    .zigzag-content {
        padding: 25px 20px;
    }
    
    .zigzag-content h2 {
        font-size: 1.6rem;
    }
    
    .service-badge {
        left: 20px;
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}


























/* ========== PORTFOLIO PAGE STYLES ========== */

/* Portfolio Hero Section */
.portfolio-hero {
    height: 60vh;
    background: linear-gradient(rgba(28, 37, 65, 0.182), rgba(58, 80, 107, 0.237)), url('img/contact.banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.portfolio-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    animation: fadeInUp 1s ease;
}

.portfolio-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.portfolio-hero-content .subtitle {
    font-size: 1.3rem;
    color: #f0f0f0;
    font-weight: 300;
    margin-bottom: 15px;
}

.portfolio-hero-content p {
    font-size: 1.1rem;
    color: #ddd;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Section */
.portfolio-filter-section {
    background-color: #fff;
}

.filter-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.filter-header p {
    color: #777;
    font-size: 1.1rem;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 15px 35px;
    border: none;
    background: #fff;
    color: #3a506b;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.filter-btn i {
    font-size: 1.1rem;
    color: #5bc0be;
    transition: all 0.4s ease;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #3a506b, #5bc0be);
    transition: left 0.4s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: #fff;
    border-color: transparent;
}

.filter-btn:hover i,
.filter-btn.active i {
    color: #fff;
}

/* Portfolio Gallery */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.portfolio-item {
    transition: all 0.4s ease;
}

.portfolio-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(58, 80, 107, 0.1);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(58, 80, 107, 0.95), rgba(91, 192, 190, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.overlay-content p {
    color: #f0f0f0;
    margin-bottom: 20px;
}

.view-project {
    display: inline-block;
    padding: 12px 25px;
    background: #fff;
    color: #3a506b;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.view-project:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: scale(1.05);
}

.portfolio-info {
    padding: 25px;
    background: #fff;
}

.portfolio-info h3 {
    color: #3a506b;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.portfolio-info p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.project-category {
    display: inline-block;
    padding: 5px 15px;
    background: #f0f0f0;
    color: #5bc0be;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 2px dashed #e0e0e0;
}

.no-results i {
    font-size: 4rem;
    color: #5bc0be;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    color: #3a506b;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.no-results p {
    color: #777;
    font-size: 1.1rem;
}

/* Portfolio Stats */
.portfolio-stats {
    background-color: #f5f5f5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

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

.stat-icon {
    font-size: 2.5rem;
    color: #5bc0be;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(5deg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3a506b;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.stat-label {
    color: #777;
    font-size: 1rem;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border: 5px solid #fff;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    color: #3a506b;
}

.lightbox-info h3 {
    color: #3a506b;
    margin-bottom: 5px;
}

.lightbox-info p {
    color: #777;
    margin-bottom: 5px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.close-lightbox:hover {
    color: #5bc0be;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #5bc0be;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .portfolio-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .portfolio-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .portfolio-hero {
        height: 50vh;
        margin-top: 70px;
    }
    
    .portfolio-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .portfolio-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lightbox-info {
        bottom: -100px;
    }
}

@media (max-width: 480px) {
    .portfolio-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .portfolio-hero-content .subtitle {
        font-size: 1rem;
    }
    
    .filter-header h2 {
        font-size: 2rem;
    }
    
    .portfolio-image {
        height: 240px;
    }
}
















/* ========== CONTACT PAGE STYLES ========== */

/* Contact Hero Section */
.contact-hero {
    height: 60vh;
    background: linear-gradient(rgba(28, 37, 65, 0.249), rgba(58, 80, 107, 0.205)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    animation: pulse 3s ease infinite;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    animation: fadeInUp 1s ease;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero-content .subtitle {
    font-size: 1.3rem;
    color: #f0f0f0;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.hero-decoration .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #5bc0be, transparent);
}

.hero-decoration i {
    font-size: 2rem;
    color: #5bc0be;
    animation: float 3s ease infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, #3a506b, #5bc0be);
    transition: height 0.4s ease;
}

.contact-info-card:hover::before {
    height: 100%;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3a506b, #5bc0be);
    border-radius: 50%;
    font-size: 2rem;
    color: #fff;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon {
    transform: rotateY(360deg);
    box-shadow: 0 10px 20px rgba(91, 192, 190, 0.3);
}

.contact-info-card h3 {
    color: #3a506b;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-action {
    margin-top: 20px;
}

.contact-link {
    display: inline-block;
    color: #5bc0be;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.contact-link:hover {
    color: #3a506b;
}

.contact-link:hover i {
    transform: translateX(5px);
}

/* Contact Form & Map Section */
.contact-form-map {
    background-color: #f9f9f9;
}

.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.section-header-left {
    margin-bottom: 30px;
}

.section-header-left h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-header-left p {
    color: #777;
    font-size: 1rem;
}

/* Contact Form */
.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.contact-form {
    width: 100%;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #3a506b;
    font-weight: 600;
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
    margin-left: 3px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 15px;
    color: #999;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.input-group:focus-within i {
    color: #5bc0be;
}

.form-control {
    width: 100%;
    padding: 14px 20px 14px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: #5bc0be;
    box-shadow: 0 5px 15px rgba(91, 192, 190, 0.1);
}

textarea.form-control {
    padding-top: 14px;
    resize: vertical;
    min-height: 120px;
}

/* CAPTCHA Section */
.captcha-section {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.captcha-image {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.captcha-image img {
    height: 40px;
    width: 120px;
    border-radius: 5px;
}

.refresh-captcha {
    background: none;
    border: none;
    color: #3a506b;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
}

.refresh-captcha:hover {
    color: #5bc0be;
    transform: rotate(180deg);
}

.captcha-input {
    flex: 1;
}

.captcha-input label {
    display: block;
    margin-bottom: 5px;
    color: #3a506b;
    font-weight: 600;
    font-size: 0.9rem;
}

.captcha-hint {
    display: block;
    margin-top: 10px;
    color: #777;
    font-size: 0.85rem;
}

/* Form Footer */
.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.form-status {
    color: #27ae60;
    font-size: 0.95rem;
}

/* Map Container */
.map-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.map-wrapper {
    margin-top: 20px;
}

.map-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: #f0f0f0;
    transform: translateY(-5px);
}

.detail-item i {
    font-size: 1.5rem;
    color: #5bc0be;
}

.detail-item h4 {
    color: #3a506b;
    font-size: 1rem;
    margin-bottom: 5px;
}

.detail-item p {
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.faq-item {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #eee;
}

.faq-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

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

.faq-question h3 {
    color: #3a506b;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.faq-question i {
    color: #5bc0be;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin 0.3s ease;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 15px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f5f5f5, #f0f0f0);
    border-radius: 10px;
}

.faq-cta p {
    font-size: 1.2rem;
    color: #3a506b;
    margin-bottom: 20px;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(rgba(28, 37, 65, 0.9), rgba(58, 80, 107, 0.95)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .contact-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .form-map-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container,
    .map-container {
        max-width: 100%;
    }
    
    .location-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        margin-top: 70px;
    }
    
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .captcha-box {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-image {
        justify-content: space-between;
    }
    
    .location-details {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .map-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero-content .subtitle {
        font-size: 1rem;
    }
    
    .section-header-left h2 {
        font-size: 1.8rem;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .form-footer {
        flex-direction: column;
    }
}



.about-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 600px; /* controls max image size */
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* keeps full image visible */
}
