/* ========================================
   MEGHLAYER MAIN CSS - TYPOGRAPHY & GLOBAL STYLES
   Production-ready, clean, and organized
   ======================================== */

/* Typography System - Unified Font Family + Premium Scale */
:root {
  --heading-font: 'Poppins', sans-serif;
  --subheading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --footer-font: 'Work Sans', sans-serif;

  /* Color tokens */
  --c-primary: #0D3B66;          /* Brand dark blue */
  --c-accent: #2CA297;          /* Brand teal */
  --c-body: #2E2E2E;            /* Body text */
  --c-muted: #6C757D;           /* Muted text */
  --c-inverse: #FFFFFF;         /* Inverse text */
  --c-subtle: #D8DEE4;          /* Subtle borders */
  --c-breadcrumb: #BFD4EA;      /* Breadcrumb arrow on dark */
  --c-hoverTextLight: #E8EEF6;  /* Light hover text on dark bg */
  --c-dropdownHoverBg: #F2F6FA; /* Dropdown hover bg */
  --c-heroSubtitle: #38526C;    /* Hero subtitle on light hero */

  /* Type scale - desktop */
  --fs-h1: 2.5rem;       /* 40px */
  --fs-h2: 2.0rem;       /* 32px */
  --fs-h3: 1.5rem;       /* 24px */
  --fs-h4: 1.25rem;      /* 20px */
  --fs-h5: 1.125rem;     /* 18px */
  --fs-h6: 1rem;         /* 16px */
  --fs-body: 1rem;       /* 16px */
  --fs-lead: 1.125rem;   /* 18px */
  --fs-small: 0.875rem;  /* 14px */
  --fs-overline: 0.8125rem; /* 13px */

  --fs-nav: 1rem;        /* 16px */
  --fs-btn: 1rem;        /* 16px */
  --fs-card-title: 1.125rem; /* 18px */

  --fs-hero-title: 3rem;       /* 48px */
  --fs-hero-subtitle: 1.25rem; /* 20px */

  --lh-heading: 1.3;
  --lh-body: 1.6;
}

/* Headings */
h1, .h1, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: var(--fs-h1);
  line-height: 1.2;
  color: var(--c-primary);
}
h2, .h2 {
  font-family: var(--subheading-font);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.25;
  color: var(--c-primary);
}
h3, .h3 { 
  font-family: var(--heading-font); 
  font-weight: 500; 
  font-size: var(--fs-h3); 
  line-height: var(--lh-heading); 
  color: var(--c-primary); 
}
h4, .h4 { 
  font-family: var(--heading-font); 
  font-weight: 500; 
  font-size: var(--fs-h4); 
  line-height: var(--lh-heading); 
  color: var(--c-primary); 
}
h5, .h5 { 
  font-family: var(--heading-font); 
  font-weight: 500; 
  font-size: var(--fs-h5); 
  line-height: var(--lh-heading); 
  color: var(--c-primary); 
}
h6, .h6 { 
  font-family: var(--heading-font); 
  font-weight: 500; 
  font-size: var(--fs-h6); 
  line-height: var(--lh-heading); 
  color: var(--c-primary); 
}

/* Body Text */
body, p, .p, .text-body {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-body);
}
.lead { 
  font-size: var(--fs-lead); 
  line-height: 1.7; 
}
small, .small { 
  font-size: var(--fs-small); 
}
.text-muted { 
  color: var(--c-muted) !important; 
}

/* Footer (tokens only; no footer visual changes per instruction) */
footer, .footer, footer * { 
  font-family: var(--footer-font); 
  font-weight: 350; 
}

/* Navigation */
.navbar-nav .nav-link { 
  font-family: var(--body-font); 
  font-weight: 500; 
  font-size: var(--fs-nav); 
}
.navbar-brand { 
  font-family: var(--heading-font); 
  font-weight: 600; 
  font-size: 1.125rem; 
}
.navbar-text { 
  font-family: var(--body-font); 
  font-weight: 400; 
  font-size: 0.9375rem; 
  color: var(--c-breadcrumb) !important; 
}
.dropdown-menu .dropdown-item { 
  font-family: var(--body-font); 
  font-weight: 500; 
  font-size: 0.9375rem; 
}
.dropdown-menu .dropdown-item:hover { 
  background: var(--c-dropdownHoverBg); 
  color: var(--c-primary); 
}

/* Buttons */
.btn { 
  font-family: var(--body-font); 
  font-weight: 600; 
  font-size: var(--fs-btn); 
  letter-spacing: 0.02em; 
}

/* Cards */
.card-title { 
  font-family: var(--heading-font); 
  font-weight: 600; 
  font-size: var(--fs-card-title); 
  color: var(--c-primary); 
}
.card-text { 
  font-family: var(--body-font); 
  font-weight: 400; 
  color: var(--c-body); 
}

/* Forms */
.form-control, .form-label { 
  font-family: var(--body-font); 
  font-weight: 400; 
  font-size: var(--fs-body); 
}
.form-label { 
  font-weight: 500; 
  font-size: 0.9375rem; 
}
::placeholder { 
  font-family: var(--body-font); 
  font-weight: 300; 
  font-size: 0.9375rem; 
}
.text-success { 
  color: var(--c-accent) !important; 
}

/* Hero defaults */
.hero h1 { 
  font-size: var(--fs-hero-title); 
}
.hero .lead { 
  font-size: var(--fs-hero-subtitle); 
  color: var(--c-heroSubtitle) !important; 
}

/* Tables */
table thead th { 
  font-family: var(--body-font); 
  font-weight: 600; 
  font-size: 0.9375rem; 
}
table tbody td { 
  font-family: var(--body-font); 
  font-weight: 400; 
  font-size: 0.9375rem; 
}

/* Testimonials */
.testimonial-index .testimonial-content p { 
  font-size: 1.0625rem; 
  line-height: 1.7; 
}
.testimonial-index .testimonial-author h5 { 
  font-family: var(--heading-font); 
  font-weight: 600; 
  font-size: 1rem; 
}
.testimonial-index .testimonial-author span { 
  font-family: var(--body-font); 
  font-weight: 400; 
  font-size: 0.875rem; 
}

/* Responsive: re-map scale via variables */
@media (max-width: 991.98px) {
  :root {
    --fs-h1: 2rem; 
    --fs-h2: 1.6rem; 
    --fs-h3: 1.25rem; 
    --fs-h4: 1.125rem; 
    --fs-h5: 1rem; 
    --fs-h6: 0.9375rem;
    --fs-lead: 1.0625rem; 
    --fs-small: 0.8125rem; 
    --fs-nav: 0.9375rem; 
    --fs-btn: 0.9375rem; 
    --fs-card-title: 1rem;
    --fs-hero-title: 2.2rem; 
    --fs-hero-subtitle: 1.125rem;
  }
  .dropdown-menu .dropdown-item { 
    font-size: 0.875rem; 
  }
}

/* Inline-size safety overrides for legacy inline heading sizes */
@media (max-width: 768px) {
  h1[style*="font-size: 2.5rem"] { 
    font-size: 2rem !important; 
  }
  h2[style*="font-size: 2.0rem"] { 
    font-size: 1.6rem !important; 
  }
  h3[style*="font-size: 1.7rem"] { 
    font-size: 1.4rem !important; 
  }
  h4[style*="font-size: 1.4rem"] { 
    font-size: 1.2rem !important; 
  }
  h5[style*="font-size: 1.2rem"] { 
    font-size: 1rem !important; 
  }
  .blueprint-title { 
    font-size: 1.6rem !important; 
  }
  .trusted-title { 
    font-size: 1.6rem !important; 
  }
}

/* ========================================
   NAVBAR COMPONENT STYLES
   Production-ready, clean, and organized
   ======================================== */

/* Integrated Fixed Navigation Styles */
.integrated-navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    z-index: 1030;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.integrated-navbar .navbar-brand {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--c-primary) !important;
    text-decoration: none;
}

.integrated-navbar .navbar-brand img {
    height: 58px;
}

@media (max-width: 991.98px) {
    .integrated-navbar .navbar-brand img {
        height: 52px;
    }
}

.integrated-navbar .nav-link {
    color: var(--c-primary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.integrated-navbar .nav-link:hover {
    color: var(--c-accent) !important;
}

.integrated-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--c-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.integrated-navbar .nav-link:hover::after,
.integrated-navbar .nav-link.active::after {
    width: 80%;
}

.integrated-navbar .dropdown-menu {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

.integrated-navbar .dropdown-item {
    color: var(--c-primary);
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.integrated-navbar .dropdown-item:hover {
    background: #e9ecef;
    color: var(--c-primary);
}

.integrated-navbar .contact-btn {
    background: var(--c-accent);
    color: white;
    border: 1px solid var(--c-accent);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 162, 151, 0.3);
}

.integrated-navbar .contact-btn:hover {
    background: var(--c-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(13, 59, 102, 0.3);
}

.integrated-navbar .navbar-toggler {
    border: 2px solid var(--c-accent) !important;
    padding: 0.25rem 0.5rem;
    color: var(--c-primary);
    background-color: transparent !important;
    border-radius: 6px !important;
    margin: 10px !important;
}

.integrated-navbar .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.integrated-navbar .navbar-toggler:hover {
    background-color: rgba(13, 59, 102, 0.1) !important;
    border-color: var(--c-primary) !important;
}

.integrated-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(13, 59, 102, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 100% !important;
    width: 1.5em !important;
    height: 1.5em !important;
    filter: none !important;
}

.integrated-navbar .dropdown-toggle::after {
    display: none;
}

/* Mobile navbar layout */
@media (max-width: 991.98px) {
    .integrated-navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .integrated-navbar .navbar-brand {
        flex-shrink: 0;
    }
    
    .integrated-navbar .navbar-toggler {
        flex-shrink: 0;
        border: none;
        padding: 0.25rem 0.5rem;
        margin-left: auto;
        order: 2;
    }
    
    .integrated-navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(13, 59, 102, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
}

/* Body padding for fixed navbar */
body {
    padding-top: 100px;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 90px;
    }
}

/* Scroll effect */
.integrated-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(13, 59, 102, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* ========================================
   HERO COMPONENT STYLES
   Production-ready, clean, and organized
   ======================================== */

.hero {
    box-shadow: 0 8px 32px rgba(60,160,170,0.15);
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 20px;
}

.partner-logo.gcp-logo img {
    width: 200px;
    max-width: 100vw;
    height: auto;
    display: block;
}

@media (max-width: 991.98px) {
    .hero {
        min-height: 52vh;
    }
    .partner-logo.gcp-logo img {
        width: 160px;
    }
}

@media (max-width: 767.98px) {
    .hero {
        border-radius: 12px;
        min-height: 46vh;
    }
    .partner-logo.gcp-logo img {
        width: 160px;
    }
}

/* ========================================
   ABOVE-FOOTER COMPONENT STYLES
   Production-ready, clean, and organized
   ======================================== */

.above-footer-bg {
    background: #A3DDE7;
    overflow: hidden;
}

.above-footer-heading {
    font-family: var(--heading-font, 'Poppins', sans-serif);
    font-weight: 600;
    color: var(--c-primary, #0d3b66);
}

.above-footer-btn {
    background: #0d3b66; 
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-weight: 600;
    transition: color 0.3s ease;
    box-shadow: 0 2px 8px rgba(13, 59, 102, 0.2);
}

.above-footer-btn:hover {
    background: #0d3b66; 
    color: #A3DDE7; 
    box-shadow: 0 2px 8px rgba(13, 59, 102, 0.2);
}

.above-footer-btn:active {
    color: #A3DDE7;
}

/* ========================================
   FOOTER COMPONENT STYLES
   Production-ready, clean, and organized
   ======================================== */

.footer-link:hover {
    color: #ffffff !important;
    transform: translateX(3px);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.footer-link:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* ========================================
   ARTICLE COMPONENT STYLES
   Production-ready, clean, and organized
   ======================================== */

.articles-section::before,
.articles-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    background: rgb(255 255 255 / .05);
}

.articles-section::before {
    top: 20px;
    left: 20px;
    width: 150px;
    height: 150px;
}

.articles-section::after {
    bottom: 20px;
    right: 20px;
    width: 200px;
    height: 200px;
}

.card-custom {
    position: relative;
    background: #fff;
    border: 2px solid #0D3B66;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 8px 16px rgb(0 0 0 / .1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-custom::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: #7eb9b6;
    bottom: -70px;
    right: -70px;
    border-radius: 40% 100% 0 0;
}

.card-title {
    font-size: 1.2rem;
    color: #0D3B66;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

.card-link {
    color: #0D3B66;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.card-link:hover {
    color: #08324B;
}

/* ========================================
   MANAGED-SERVICES COMPONENT STYLES
   Production-ready, clean, and organized
   ======================================== */

.meghlayer-cloud-section {
    background: #f8f9fa;
    overflow: hidden;
}

.meghlayer-cloud-title {
    color: #0d3b66;
    font-family: var(--heading-font, 'Poppins', sans-serif);
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.meghlayer-cloud-subtitle {
    color: #2ca297;
    font-family: var(--heading-font, 'Poppins', sans-serif);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.meghlayer-cloud-text-block {
    max-width: 1100px;
    margin: 0 auto;
}

.meghlayer-cloud-text {
    color: #495057;
    font-family: var(--body-font, 'Open Sans', sans-serif);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 15px;
}

.meghlayer-cloud-highlight {
    font-weight: 600;
    color: var(--c-primary, #0D3B66);
}

.meghlayer-cloud-cta {
    color: var(--c-accent, #2ca297);
    font-family: var(--heading-font, 'Poppins', sans-serif);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 30px;
}

.meghlayer-cloud-card {
    border: none;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .meghlayer-cloud-title {
        font-size: 1.5rem;
    }
    
    .meghlayer-cloud-text-block {
        max-width: 100%;
        padding: 0 15px;
    }
}

/* ========================================
   OUR-PROCESS COMPONENT STYLES
   Production-ready, clean, and organized
   ======================================== */

.signature {
    font-size: 75px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.45);
    position: absolute;
    left: 25%;
    transform: translateX(-35%); 
} 

.blueprint-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d3b66;
    margin-bottom: 10px;
}

.icon {
    font-size: 32px;
    color: #0D3B66;
    margin-bottom: 10px;
}

.blueprint-title-inside {
    font-size: 1.3rem;
    font-weight: 600;
    color: #555;
}

/* ========================================
   SOLUTIONS COMPONENT STYLES
   Production-ready, clean, and organized
   ======================================== */

.solutions-section::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(20px);
}

.solutions-section::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(20px);
}

.solutions-card-custom {
    position: relative;
    background: #fff;
    border: 2px solid #0D3B66;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 100%;
}

.solutions-card-custom::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: #7eb9b6;
    bottom: -70px;
    right: -70px;
    border-radius: 40% 100% 0 0;
}

.solutions-card-title {
    font-size: 1.2rem;
    color: #0D3B66;
    margin-bottom: 10px;
    font-weight: 700;
}

.solutions-card-text {
    color: #333;
    margin-bottom: 20px;
}

.solutions-card-link {
    color: #0D3B66;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s;
}

.solutions-card-link:hover {
    color: #08324B;
}

/* ========================================
   INDEX PAGE SPECIFIC STYLES
   Production-ready, clean, and organized
   ======================================== */

/* Pillar Circle Hover Effects */
.pillar-circle:hover {
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
    transform: translateY(-4px);
    transition: 0.3s;
}

/* Expertise Cards */
.expertise-card {
    min-height: 80px;
}

.our-expertise-icons {
    background-color: #5C9F9C;
    width: 48px;
    height: 48px;
}

/* Trusted By Section */
section.trusted-by {
    font-family: 'Open Sans', sans-serif;
    background: #f5eee9;
    padding: 35px 0;
}

.trusted-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.0rem;
    text-align: center;
    color: #0d3b66;
    margin-bottom: 60px;
    text-transform: uppercase;
}

/* Swiper Slider Styles */
.swiper {
    width: 100%;
    padding-bottom: 70px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease, opacity 0.9s ease, filter 0.5s ease;
    transform: scale(0.85);
    opacity: 0.7;
    filter: blur(0px);
}

.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    filter: none;
}

.slider-card {
    background-color: #fff;
    width: 200px;
    height: 130px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(0px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-color: black;
    border-width: 1px;
}

.swiper-slide-active .slider-card {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.swiper-slide:not(.swiper-slide-active) .slider-card {
    background: transparent;
    padding: 15px;
    box-shadow: none;
    border-radius: 16px;
}

.slider-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

.swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background-color: #0d3b66;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .slider-card {
        width: 150px;
        height: 100px;
    }
    
    .trusted-title {
        font-size: 1.4rem;
        font-weight: 600;
        line-height: 1.3;
    }
}

/* ========================================
   INDEX PAGE ADDITIONAL STYLES
   Production-ready, clean, and organized
   ======================================== */

/* Testimonial Index Styles */
.testimonial-index h3 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

/* Trusted By Section - Updated Font */
section.trusted-by {
    font-family: 'Segoe UI', sans-serif;
    background: #f5eee9;
    padding: 35px 0;
}

/* ========================================
   CONTACT PAGE SPECIFIC STYLES
   Production-ready, clean, and organized
   ======================================== */

/* Contact Card Styles */
.card-header-custom-bg {
    background-color: #f3a189;
}

.contact-card {
    border: 5px;
    border: 1px solid #26ada7;
}

.contact-card:hover {
    border: 1px solid #0ee0d6;
    transition: border-color 0.1s ease;
}

.contact-form-card {
    border: 1px solid #26ada7;
}

/* Form Validation Styles */
.required::after {
    content: ' *';
    color: #dc3545;
}

/* Teal Brand Button Styles */
.btn-teal {
    background-color: #2ca297;
    border-color: #2ca297;
    color: #fff;
}

.btn-teal:hover {
    background-color: #238e84;
    border-color: #238e84;
    color: #fff;
}

/* Accent Text Styles */
.text-accent {
    color: #2ca297 !important;
}

/* Scroll Target Visibility */
#cloud-journey-form {
    scroll-margin-top: 100px;
}

/* ========================================
   SERVICES PAGE SPECIFIC STYLES
   Production-ready, clean, and organized
   ======================================== */

/* Solutions Container */
.solutions-container {
    max-width: 1400px;
    margin: 50px auto;
    padding: 20px;
}

.solutions-subtitle {
    margin-bottom: 40px;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

/* Solution Cards */
.solution-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-icon {
    font-size: 40px;
    color: #0D3B66;
    margin-bottom: 15px;
}

.solution-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.solution-card p {
    font-size: 14px;
    color: #444;
}

/* ========================================
   CAREERS PAGE SPECIFIC STYLES
   Production-ready, clean, and organized
   ======================================== */

/* Careers Wrapper */
.careers-wrap {
    background: linear-gradient(180deg, #F6FAFB 0%, #E3F6F5 100%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 60px 30px;
}

/* ========================================
   GOOGLE CLOUD SERVICES PAGE STYLES
   Production-ready, clean, and organized
   ======================================== */

/* Feature Cards */
.feature-card {
    border: 1px solid rgba(38, 173, 167, 0.2);
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.06);
}

.card-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 34px;
}

.feature-icon {
    width: 34px;
    height: 34px;
    color: #26ada7;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: #1a8a85;
}

/* Service Cards */
.service-card {
    border: 1px solid rgba(38, 173, 167, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.service-card:hover {
    border-color: #26ada7;
    box-shadow: 0 0.5rem 1rem rgba(38, 173, 167, 0.1);
}

.service-card img {
    transition: transform 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========================================
   GOOGLE WORKSPACE PAGE STYLES
   Production-ready, clean, and organized
   ======================================== */

/* Cards and Lists */
.callout {
    background-color: rgba(38, 173, 167, 0.1);
    border-left: 4px solid #26ada7;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0.25rem;
}

.list-unstyled {
    margin: 0;
    padding: 0;
}

.list-unstyled li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.list-unstyled li span {
    margin-right: 0.5rem;
    flex-shrink: 0;
    color: #26ada7;
}

/* Images */
.workspace-img {
    border-radius: 0.25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s ease;
}

.workspace-img:hover {
    transform: scale(1.02);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.product-item {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-4px);
}

.product-item img {
    width: 45px;
    height: 45px;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

/* ========================================
   ADDITIONAL COMPONENT STYLES
   Production-ready, clean, and organized
   ======================================== */

/* Cloud Pillar Styles */
.cloud-pillar-container {
    flex-wrap: wrap;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.cloud-pillar-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 4px;
    background-color: #0D3B66;
    z-index: 1;
}

.cloud-pillar-item {
    z-index: 2;
}

.pillar-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #0D3B66;
    margin-bottom: 5px;
}

.pillar-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Testimonial Styles */
.testimonial-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.testimonial-card {
    display: none;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: opacity 0.5s ease;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
}

.testimonial-controls {
    margin-top: 20px;
    text-align: center;
}

.testimonial-controls button {
    background-color: #0d3b66;
    border: none;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s;
}

.testimonial-controls button:hover {
    transform: scale(1.2);
}

.testimonial-controls button.active {
    background-color: #f05454;
}

/* Hero Button Styles */
.hero-btn {
    padding: 7px 25px;
    font-size: 18px;
    color: white;
    background-color: #05a58d;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.5s;
}

.hero-btn:hover {
    background-color: #007c6a;
    color: #fff;
}

.hero-btn-small {
    padding: 6px 13px;
    font-size: 17px;
    color: white;
    background-color: #05a58d;
    border: none;
    border-radius: 7px;
    text-decoration: none;
    transition: 0.5s;
}

.hero-btn-small:hover {
    background-color: #007c6a;
    color: #fff;
}

/* Additional Utility Styles */
.our-approach-bg {
    background: linear-gradient(180deg, #f0faff 0%, #e0f7ff 100%);
    overflow: hidden;
}

.trusted-tech-logo-height {
    height: 70px;
}

.trusted-tech-logo-max-height {
    max-height: 30px;
}

.trusted-tech-logo2-max-height {
    max-height: 50px;
}

.testimonial-index {
    z-index: 1;
}

/* Mobile Responsive for Cloud Pillar */
@media (max-width: 768px) {
    .cloud-pillar-container {
        flex-direction: column;
        gap: 10px;
        position: relative;
    }
    
    .cloud-pillar-container::before {
        width: 0px;
        height: 0%;
        left: 0%;
        top: 0;
        transform: translateX(-50%);
        z-index: 1;
    }
    
    .cloud-pillar-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 90%;
        position: relative;
        gap: 15px;
    }
    
    .pillar-circle {
        flex-shrink: 0;
        margin: 0;
    }
    
    .pillar-content {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .pillar-number {
        margin-bottom: 0;
    }
    
    .pillar-text {
        text-align: left;
        margin-top: 0;
    }
}

