/* Global Styles */
:root {
    --primary-blue: #1e88e5;
    --light-blue: #64b5f6;
    --accent-orange: #ff9800;
    --dark-text: #333;
    --light-text: #fff;
    --gray-bg: #f5f5f5;
    --secondary-blue: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}

/* Header & Navigation */
header {
    background-color: var(--light-text);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-img {
    height: 100px;
    width: auto;
}

.logo h1 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .logo {
        gap: 1rem;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        gap: 0.8rem;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-blue);
}

.nav-links a.active {
    color: var(--secondary-blue);
    font-weight: 600;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 1000;
    padding: 1rem;
    box-sizing: border-box;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-nav.active {
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 4rem;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 0.5rem 0;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    border-left: 3px solid transparent;
}

.mobile-nav a:hover {
    color: #ffd700;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ffd700;
    padding-left: 1.5rem;
}

.mobile-nav .close-nav {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-nav .close-nav:hover {
    color: #ffd700;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Overlay when mobile nav is active */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        display: flex;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 136, 229, 0.9), rgba(30, 136, 229, 0.7)),
                url('../images/hero-bg.jpg') center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding: 0 1rem;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-orange);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f57c00;
}

/* Services Section */
.services-overview {
    padding: 5rem 1rem;
    background-color: var(--gray-bg);
    text-align: center;
}

.services-overview h2 {
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--light-text);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.view-more {
    display: inline-block;
    margin-top: 2rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 1rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.feature {
    padding: 2rem;
}

.feature i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--light-text);
    padding: 4rem 1rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-text);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-card, .feature {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Image Gallery Section */
.image-gallery {
    padding: 4rem 0;
    background-color: var(--gray-bg);
    margin-top: 2rem;
    overflow: hidden; /* Prevent scroll issues */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    height: 800px; /* Fixed height for 2x2 grid */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    height: 100%; /* Fill grid cell */
    background-color: #fff;
    padding: 0;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
    display: block;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    font-weight: 500;
    font-size: 1.1rem;
    z-index: 2;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* About and Services Page Styles */
.about-hero, .services-hero {
    background: linear-gradient(rgba(30, 136, 229, 0.9), rgba(30, 136, 229, 0.7)),
                url('../images/hero-bg.jpg') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding: 0 1rem;
    margin-top: 70px;
}

.about-hero-content, .services-hero-content {
    max-width: 800px;
}

.about-hero-content h1, .services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.about-hero-content p, .services-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* Animated Sections */
.about-sections, .services-sections {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-section, .service-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.about-section.visible, .service-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-section:nth-child(even), .service-section:nth-child(even) {
    flex-direction: row-reverse;
}

.about-image, .service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.parallax-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

.about-content, .service-content {
    flex: 1;
    padding: 2rem;
}

.about-content h2, .service-content h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--accent-orange);
}

/* Animation Classes */
.slide-in-left {
    transform: translateX(-100px);
}

.slide-in-right {
    transform: translateX(100px);
}

.fade-in {
    opacity: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-section, .service-section {
        flex-direction: column !important;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .about-image, .service-image {
        width: 100%;
    }

    .parallax-img {
        height: 300px;
    }

    .about-content, .service-content {
        padding: 1rem;
    }

    .about-hero-content h1, .services-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-content p, .services-hero-content p {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-caption {
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.7);
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Enhanced Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.service-card.visible {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Enhanced Features */
.feature {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: all 0.8s ease-out;
}

.feature.visible {
    opacity: 1;
}

.feature i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-caption {
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.7);
    }
} 

.insights-faqs-section {
  background: var(--gray-bg);
  padding: 3rem 0 2.5rem 0;
}
.insights-faqs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.insights-title {
  text-align: center;
  color: var(--primary-blue);
  font-size: 2rem;
  margin-bottom: 2.2rem;
  font-weight: 700;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.insight-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,136,229,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-decoration: none;
  color: var(--dark-text);
  transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
  border: 2px solid transparent;
}
.insight-card h3 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.insight-card p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 0;
}
.insight-card:hover {
  box-shadow: 0 6px 24px rgba(30,136,229,0.13);
  border: 2px solid var(--accent-orange);
  transform: translateY(-4px) scale(1.02);
}
@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .insights-title {
    font-size: 1.3rem;
  }
  .insight-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
} 