/* Hero Section with Video */
.hero {
    position: relative;
    height: 100vh; /* full screen height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -1; 
}

.hero-overlay {
    position: relative;
    background: rgba(44, 62, 80, 0.6); 
    padding: 150px 50px;
    border-radius: 12px;
}

.hero-video {
    height: 100%;   /* fill hero section */
}

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

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

/* Section Styles */
section {
    padding: 10px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 1.6rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    white-space: nowrap; 
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background-color: #3498db;
}

/* Philosophy Section */
.philosophy-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
    min-width: 300px;
}

.philosophy-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.philosophy-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.philosophy-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.philosophy-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.approach-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.offering-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.offering-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.offering-card p {
    color: #7f8c8d;
}

/* Services Section */
.services {
    background-color: #2c3e50;
    color: white;
}

.services .section-title h2 {
    color: white;
}

.services-list {
    list-style-type: none;
    max-width: 600px;
    margin: 0 auto;
}

.services-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.services-list li:last-child {
    border-bottom: none;
}

/* Contact Form Container */
.contact-form {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 45px 40px;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    max-width: 700px;
    margin: 50px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.4s ease;
    animation: popup-fade 0.6s ease;
}

/* Popup entrance animation */
@keyframes popup-fade {
    0% {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
}

/* Form Groups */
.form-group {
    margin-bottom: 28px;
}

/* Inputs & Textareas */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: #2c3e50;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.04);
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}

/* Placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    opacity: 0.9;
}

/* Focus States */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #3498db;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(52, 152, 219, 0.12);
}

/* Submit Button */
.submit-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2c82c9);
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(52, 152, 219, 0.35);
    position: relative;
    overflow: hidden;
}

/* Button hover with shimmer effect */
.submit-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75px;
    width: 50px;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-25deg);
    transition: all 0.5s;
}

.submit-btn:hover::after {
    left: 120%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2c82c9, #1f6391);
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.5);
    transform: translateY(-3px);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.35);
}

/* Success / Error Message */
.success-msg {
    margin-top: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #27ae60;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 35px 24px;
    }

    .submit-btn {
        width: 100%;
        text-align: center;
        padding: 16px;
    }
}



/* Services */
.services {
  background: #0a192f; /* deep modern navy */
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.service-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px; /* balanced spacing */
  max-width: 1100px;
  margin: auto;
}

.service-icons div {
  display: flex;
  flex-direction: column;
  align-items: center; /* center icon + text */
  justify-content: center;
  padding: 20px 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.25s ease, color 0.25s ease;
}

.service-icons i {
  font-size: 38px;
  margin-bottom: 10px;
  color: #64ffda; /* teal accent */
  transition: transform 0.25s ease, color 0.25s ease;
}

.service-icons p {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.4px;
  transition: color 0.25s ease;
}

.service-icons div:hover {
  transform: translateY(-4px); /* subtle lift */
}

.service-icons div:hover i {
  color: #ff6ec7; /* pink accent on hover */
  transform: scale(1.1); /* gentle zoom */
}

.service-icons div:hover p {
  color: #64ffda;
}


/* Offerings Section */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
    padding: 10px;
}

/* Card Styling */
.offering-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(245,245,245,0.7));
    backdrop-filter: blur(12px);
    padding: 35px 28px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Subtle Glow + Lift on Hover */
.offering-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
    border-color: rgba(52, 152, 219, 0.5);
}

/* Accent glow effect on hover */
.offering-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.08), transparent 70%);
    transform: rotate(25deg);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.offering-card:hover::before {
    opacity: 1;
}

/* Heading Styling */
.offering-card h3 {
    color: #2c3e50;
    margin-bottom: 18px;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
.offering-card:hover h3 {
    color: #3498db;
}

/* Paragraph Styling */
.offering-card p {
    color: #6c7a89;
    font-size: 1rem;
    line-height: 1.65;
    letter-spacing: 0.2px;
}

/* Smooth Animation */
@media (max-width: 768px) {
    .offering-card {
        padding: 28px 22px;
    }
    .offering-card h3 {
        font-size: 1.4rem;
    }
    .offering-card p {
        font-size: 0.95rem;
    }
}

