/* ===== CSS RESET & BASE STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --silver-metallic:#C0C0C0;
    --dark-grey-mountain:#1A1A1A;
    --offwhite-bg:#f5f5f5;
    --primary-black: var(--dark-grey);
    --dark-grey: #000;
    --light-grey: #c7c7c7;
    --ultra-light-grey: #f8f8f8;
    --accent-grey: #181818;
    --neon-grey: #080808;
    --deep-black: #010101;
    --medium-grey: #475569;
    --white: #FFFFFF;
    --success-green: #10b981;
    --cyan-accent: var(--dark-grey);
    --warning-yellow: #F59E0B;
    --error-red: #EF4444;
    --color-deep-black: #0a0a0a;
    --color-primary-black: #1a1a1a;
    --color-medium-grey: #6b6b6b;
    --color-accent: #f8f9fa;
    --gradient-bright: linear-gradient(135deg, var(--primary-black), var(--dark-grey));
}
html, body {
    overflow-x: hidden !important;
  }
  
  [data-aos] {
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
  }
  
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter' ;
    background: var(--white);
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ===== LOADING ANIMATION ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.5s ease 2s forwards;
}

.loader-inner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--light-grey);
    border-top-color: var(--primary-black);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        pointer-events: none;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--ultra-light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-grey);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-grey);
}

/* ===== NAVIGATION - ULTRA MODERN GLASS ===== */
.navbar {
    position: static;
    top: 0;
    width: 100%;
    padding: 0 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background:var(--white);
    backdrop-filter: blur(20px);
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.08); */
}

.navbar.scrolled {
    padding: 0 0;
    background:var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.contact-info i{
    margin-right: 3px;
}
.contact-info {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 0.7rem;

    flex-shrink: 1; /* Safari fix */
    min-width: 0;
}
@media (max-width: 1024px) {
    .contact-info {
        display: none;
    }
}


.contact-info a {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color:var(--dark-grey);
}

.divider {
    color: var(--dark-grey);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1.5rem;
    min-width: 0; /* required for Safari */
}
.logo {
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-decoration: none;
    text-align: center;
    max-width: 180px;
    flex-shrink: 0;
}

.logo img {
    width: auto;
    height: 60px; 
    object-fit: contain;
    margin-bottom: 0;
}

.logo-text {
    font-size: 8px;
    color: #595959;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.2;
}

/* Adjust for larger screens */
@media (min-width: 1025px) {
    .logo img {
        height: 80px;
    }
    .logo-text {
        font-size: 10px;
    }
}

/* Mobile responsive navbar */
@media (max-width: 768px) {
    .logo img {
        height: 90px;
    }
    .logo-text {
        font-size: 8px;
        margin-bottom: 6px;
    }
}



@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;

    flex-shrink: 1;   /* Safari fix */
    min-width: 0;     /* allows shrinking */
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-black);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-cta:hover {
    background: transparent !important;
    border-color: var(--primary-black);
    color: var(--primary-black) !important;
    transform: translateY(-2px);
}

/* ===== HERO SECTION - ULTRA MODERN ===== */
.hero {
  
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 0;
  
    overflow: hidden;
}

/* Animated Background Grid */
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Animated Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-black);
    border-radius: 50%;
    opacity: 0.3;
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation: float 15s infinite;
}

.particle:nth-child(2) {
    top: 20%;
    left: 80%;
    animation: float 20s infinite;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 60%;
    animation: float 18s infinite;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 40%;
    left: 40%;
    animation: float 22s infinite;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    top: 80%;
    left: 10%;
    animation: float 25s infinite;
    animation-delay: 4s;
}

.particle:nth-child(6) {
    top: 30%;
    left: 30%;
    animation: float 19s infinite;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    top: 70%;
    left: 70%;
    animation: float 16s infinite;
    animation-delay: 6s;
}

.particle:nth-child(8) {
    top: 50%;
    left: 90%;
    animation: float 21s infinite;
    animation-delay: 7s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(-30px, -50px) scale(1.5);
        opacity: 0.6;
    }
    50% {
        transform: translate(50px, -30px) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translate(-20px, 30px) scale(1.2);
        opacity: 0.5;
    }
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(#262626 1px, transparent 1px),
        linear-gradient(90deg, #262626 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float-orb 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #c7c7c7 0%, #262626 100%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #e0e0e0 0%, var(--dark-grey) 100%);
    bottom: -100px;
    right: -100px;
    animation-delay: 7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #d1d1d1 0%, #181818 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width:1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: slideDown 0.8s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.hero-badge span {
    color: var(--medium-grey);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color:var(--dark-grey);
    animation: titleAnimation 1s ease 0.2s both;
}

@keyframes titleAnimation {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* .gradient-text {
    background: linear-gradient(135deg, #c7c7c7 0%, #262626 50%, var(--dark-grey)000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
    display: inline-block;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
} */

.hero-subtitle {

    color: var(--medium-grey);
    margin: 0 auto 3rem auto;
    font-weight: 400;
    max-width: 900px;              /* Prevents excessive width on large screens */
    width: 100%;
    padding: 0 1.5rem;             /* Ensures spacing on mobile */
    line-height: 1.6;
    text-align: center;            /* Proper visual alignment */
    animation: titleAnimation 1s ease 0.4s both;
  }
  @media (min-width: 1600px) {
    .hero-subtitle {
      max-width: 800px;
    }
  }
    
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: titleAnimation 1s ease 0.6s both;
}
.hero-buttons .btn{
    min-width: 250px ;
    text-align: center;
    display: block;
}
.hero-buttons .btn i{
    margin-left:6px;
}
.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--white);
    color: var(--dark-grey);
    border: 2px solid #e9e9e9;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); */
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.btn-secondary:hover {
    background: var(--light-grey);
    border-color: var(--dark-grey);
    transform: translateY(-3px);
}

/* Animated Arrow */
.btn span.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn:hover span.arrow {
    transform: translateX(5px);
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    animation: floatStats 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@keyframes floatStats {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.stat-left {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.stat-right {
    top: 20%;
    right: 10%;
    animation-delay: 3s;
}

.floating-stats h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 0.25rem;
}

.floating-stats p {
    color: var(--medium-grey);
    font-size: 0.875rem;
}

/* ===== SECTIONS ===== */
.section {
    padding: 3rem 0;
    position: relative;
    animation: fadeInSection 1s ease;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-dark {
    background: var(--white);
}

.section-alt {
    background: var(--offwhite-bg);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
@media only screen and (max-width:1300px){
    .container {
        max-width: 1200px !important;
        margin: 0 auto;
        padding: 0 2rem;
    }
}

/* Modern Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-badge {
    display: inline-block;
    background: #fff !important;
    border: 1px solid #ddd;
    color: var(--primary-black);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: slideScale 0.6s ease;
}

@keyframes slideScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--dark-grey) 0%, var(--primary-black) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1.125rem;
    color: var(--medium-grey);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== ABOUT PREVIEW - MODERN CARDS ===== */
.about-preview {
    /* display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem; */
    align-items: center;
    margin-bottom: 3rem;
}

.about-content {
    background: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid #ddd;
    padding: 3rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ddd;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--dark-grey);
}

.about-content p {
    color: var(--medium-grey);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
    animation: slideInRight 0.8s ease;
}

.stat-card {
    background: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    flex-direction: column;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    width: calc(100% - 100px);
    margin-bottom: 14px;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
    position: relative;
    overflow: hidden;
}


.stat-card:hover {
    transform: translateY(-5px);
    /* border-color: var(--primary-black); */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-grey);
    margin-bottom: 0;
    animation: countUp 2s ease;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-label {
    color: var(--medium-grey);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== SERVICES - BENTO GRID LAYOUT ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    animation: cardPopIn 0.6s ease backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardPopIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-black) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-black);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: iconBounce 2s ease infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--dark-grey);
}

.service-card p {
    color: var(--medium-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== PACKAGES - MODERN PRICING CARDS ===== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.8s ease backwards;
}

.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card.featured {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(38, 38, 38, 0.05));
    border-color: var(--primary-black);
    transform: scale(1.05);
    animation: featuredPulse 3s ease infinite;
}

@keyframes featuredPulse {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    }
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary-black);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: badgeSlide 0.5s ease;
}

@keyframes badgeSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--dark-grey);
}

.package-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.package-price span {
    font-size: 1.25rem;
    color: var(--light-grey);
    font-weight: 400;
}

.package-description {
    color: var(--medium-grey);
    margin-bottom: 2rem;
    font-style: italic;
}
.package-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    color: var(--dark-grey);
}

.package-features li {
    margin-bottom: 0.5rem;
    position: relative;
   
}

/* ===== WHY US - FEATURE CARDS ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    animation: featureSlide 0.8s ease backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes featureSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-card:hover {
 
    border-color: var(--primary-black);
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: iconRotate 3s ease infinite;
}

@keyframes iconRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--dark-grey);
}

.feature-card p {
    color: var(--medium-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CONTACT PREVIEW - MODERN CTA ===== */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-black), var(--dark-grey));
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: ctaGlow 3s ease infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    }
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.contact-cta-content {
    position: relative;
    z-index: 1;
}

.contact-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--white);
}

.contact-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    animation: contactPop 0.6s ease backwards;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes contactPop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.95);
}

.contact-item-icon {
    font-size: 32px;
    margin-bottom: 1rem;
    display: inline-block;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-grey);
}

.contact-item p {
    color: var(--medium-grey);
    font-size: 0.875rem;
}

.contact-item a {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: var(--offwhite-bg);
    padding: 60px 0 80px;
    text-align: center;
    color: var(--dark-grey);
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== ABOUT CONTENT ===== */
.about-hero-content {
    /* display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem; */
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-grey);
}

.about-text p {
    color: var(--medium-grey);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--primary-black), var(--dark-grey));
    padding: 3rem;
    text-align: center;
    color: var(--white);
}

.timeline {
    position: relative;
    padding: 2rem 0;
    margin: 3rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, var(--primary-black), var(--dark-grey));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-black), var(--dark-grey));
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-grey);
}

.timeline-description {
    color: var(--medium-grey);
    line-height: 1.6;
}

/* ===== MISSION & VISION ===== */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-black), var(--dark-grey));
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-black), var(--dark-grey));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-grey);
}

.mission-card p,
.vision-card p {
    color: var(--medium-grey);
    line-height: 1.8;
}

/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    border-left: 4px solid;
    border-image: linear-gradient(135deg, var(--primary-black), var(--dark-grey)) 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-item h4 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.value-item p {
    color: var(--medium-grey);
    line-height: 1.6;
}

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-black), var(--dark-grey));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-grey);
}

.member-role {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--medium-grey);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== STATISTICS ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-black), var(--dark-grey));
    border-radius: 20px;
    padding: 4rem;
    margin: 4rem 0;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}
.about-section-stats .stat-number{
    color: #fff;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
}
.about-section-stats .stat-label{
    color: #fff;
}
.stat-label {
    font-size: 1.1rem;
    color: var(--dark-grey);
    opacity: 0.95;
}

/* Blog Cards Wrapper */
.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* flexible columns */
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto; /* center the whole grid */
    justify-content: center; /* center items if they don’t fill the row */
    align-items: start;
    width: 100%;
}

@media (max-width: 992px) {
    .blog-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-cards {
        grid-template-columns: 1fr;
    }
}

/* Individual Blog Card */
.blog-card {
    background: #fff;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    box-shadow:0 0 10px 0 rgba(5,1,64,.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Blog Card Image */
.blog-card-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.blog-card:hover .body-card-area{
    background-color: var(--dark-grey);
    color: #fff;
}
.blog-card:hover .blog-card-title{
    color: #fff;
    
}
.body-card-area{
 
}
/* Blog Card Content */
.blog-card-title {
    font-size: 16px;
    font-weight: 400;
    margin: 1rem 1rem 0.5rem 1rem;
    padding: 10px;
    font-family: "Montserrat";
    color: var(--dark-grey);
}
.blog-card-title:hover{
    background-color: var(--dark-grey);
}

/* ===== SERVICES MAIN SECTION ===== */
.services-main-section {
    padding: 6rem 0;
    padding-top: 0 !important;
    position: relative;
    overflow: hidden;
}

.services-primary-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.services-category-wrapper {
    margin-bottom: 6rem;
    position: relative;
}

.services-category-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.services-category-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.services-category-wrapper:not(:first-child) .services-category-title {
    color: var(--dark-grey);
}

.services-category-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-medium-grey), transparent);
    border-radius: 2px;
}

.services-category-subtitle {
    font-size: 1.1rem;
    color: var(--color-light-grey);
    font-weight: 400;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.services-category-wrapper:not(:first-child) .services-category-subtitle {
    color: var(--color-medium-grey);
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-premium-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-deep-black), var(--color-dark-grey));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.service-premium-card:hover::before {
    transform: scaleX(1);
}

.service-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.12);
}

.service-card-header-section {
    margin-bottom: 2rem;
}

.service-icon-container {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-deep-black) 0%, var(--color-dark-grey) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    position: relative;
    transition: all 0.4s ease;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25); */
}

.service-premium-card:hover .service-icon-container {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.35);
}

.service-icon-container i {
    font-size: 2rem;
    color: var(--color-white);
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.service-card-description {
    font-size: 1rem;
    color: var(--color-medium-grey);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-feature-item {
    padding: 0.875rem 0;
    color: var(--color-dark-grey);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.service-feature-item:last-child {
    border-bottom: none;
}

.service-feature-item:hover {
    padding-left: 0.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}

.service-feature-icon {
    color: var(--color-deep-black);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.services-cta-section {
    text-align: center;
    margin-top: 6rem;
    padding: 5rem 3rem;
    background: var(--dark-grey);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.services-cta-title {
    font-size: 2.75rem;
    font-weight: 700;

    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.services-cta-description {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.services-cta-button {
    display: inline-block;
    padding: 1.125rem 3rem;
    background: var(--color-white);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
 
    border: 1px solid #fff;
}

.services-cta-button:hover {
    transform: translateY(-3px);
  color: var(--dark-grey);
    background: var(--color-accent);
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    overflow-x: auto;
    margin: 4rem 0;
    padding: 0 1rem;
}

.comparison-table table {
    width: 100%;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-collapse: separate;
    border-spacing: 0;
    border: none;
}

.comparison-table thead tr {
    background: #f5f5f5;
}

.comparison-table th {
    padding: 2rem 1.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
}

.comparison-table th:first-child {
    text-align: left;
    font-size: 1rem;
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.02);
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1.75rem 1.75rem;
    color: #2a2a2a;
    font-size: 1rem;
    border: none;
    vertical-align: middle;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #0a0a0a;
    padding-left: 2rem;
}

.comparison-table td:not(:first-child) {
    text-align: center;
    color: #6b6b6b;
    font-weight: 500;
}

.comparison-table .text-success i,
.comparison-table .bi-check-circle {
    color: #0a0a0a;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.comparison-table .text-danger i,
.comparison-table .bi-x-circle {
    color: red;
    font-size: 1.75rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover .text-success i {
    transform: scale(1.15);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.comparison-table tbody tr:hover .text-danger i {
    opacity: 0.7;
}

/* Highlight specific text values */
.comparison-table td:not(:first-child):not(.text-success):not(.text-danger) {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.03), rgba(42, 42, 42, 0.03));
    border-radius: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Feature column styling */
.comparison-table td.text-start {
    position: relative;
    padding-left: 3rem;
}

.comparison-table td.text-start::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, #0a0a0a, #6b6b6b);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comparison-table tbody tr:hover td.text-start::before {
    opacity: 1;
}

/* ===== FAQ ===== */
.faq {
    margin: 3rem 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-grey);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--medium-grey);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
    padding-top: 20px;
}

/* ===== CONTACT FORM ===== */
/* ===== CONTACT GRID (FLEX VERSION) ===== */
.contact-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 3rem 0;
}

/* left side (form) */
.contact-form {
    flex: 1 1 480px;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    border: 1px solid #ddd;
    min-width: 0; /* Safari fix */
}

/* right side (information cards) */
.contact-infos {
    flex: 1 1 380px;
    padding: 2rem;
    min-width: 0; /* Safari fix */
}

/* ===== FORM ELEMENTS ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1 1 220px;
}

/* form inputs */
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-grey);
}
/* UNIVERSAL FIX FOR iPHONE SAFARI INPUTS */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;                 /* consistent height on iOS */
    border: 1.5px solid #ddd;
    border-radius: 10px;

    font-size: 16px;                     /* REQUIRED: prevents Safari zoom */
    line-height: 1.4;                    /* fixes squashed height */

    background: #fff;
    color: #111827;

    /* box-shadow: 0 1px 2px rgba(0,0,0,0.02); */
    transition: all 0.3s ease;

    -webkit-appearance: none;            /* removes iOS internal styling */
    -moz-appearance: none;
    appearance: none;

    box-sizing: border-box;
}
.form-group select {
    background-image: none;
    padding-right: 40px;
}

/* textarea special rule */
.form-group textarea {
    min-height: 130px;                   /* fixes tiny textarea on iPhone */
    resize: vertical;
}


/* ===== INFO CARDS ===== */
.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    flex-wrap: wrap;
    min-width: 0; /* Safari fix */
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #e9e9e9;
    color: #000;
    font-size: 1.5rem;
}

.info-content {
    min-width: 0; /* Safari fix */
}

.info-content p,
.info-content a {
    font-size: 0.95rem;
}

/* ===== OFFICE HOURS ===== */
.office-hours {
    background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(38,38,38,0.05));
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px solid rgba(0,0,0,0.08);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    flex-wrap: wrap;
}

/* ===== MOBILE BREAKPOINTS ===== */
@media (max-width: 768px) {
    .nav-container {padding: 0 2rem 0 0 !important;}
    .hero-title {
        font-size: 38px !important;
        line-height: normal !important;
    
    }
    .hero-subtitle {font-size: 14px !important;
    text-align: start;
    padding: 0px !important;
    
    }
    .hero-content {
padding: 0 20px;

    }
    .hero{
        padding-top: 160px !important;
    }
    .page-hero {padding: 160px 40px 80px ;}
    .contact-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .page-hero p {font-size: 16px;}
    .contact-form,
    .contact-infos {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    .form-row .form-group{
        flex: 1 1 0px;
    }
    .contact-infos {padding: 20px !important;}
    .info-content a , .info-content p, .hours-list li  {font-size: 13px !important;}
}
.info-content a { color: var(--primary-black); text-decoration: none; font-weight: 500; } .info-content a:hover { text-decoration: underline; }
.map-container {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 400px;
    background: var(--ultra-light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.response-time {
    background: linear-gradient(135deg, var(--ultra-light-grey) 0%, var(--light-grey) 100%);
    color: #000;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
}

.response-time h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ===== CTA SECTIONS ===== */
.cta-section {
    background: linear-gradient(135deg, var(--ultra-light-grey) 0%, var(--light-grey) 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    font-size: 2.5rem;
    text-transform: capitalize;
    margin-bottom: 1rem;
    color: var(--dark-grey);
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--medium-grey);
    margin-bottom: 2rem;
}

/* ===== FOOTER - MINIMALIST MODERN ===== */
.footer {
    border-top: 1px solid #ddd;
    background: #fff;
    color: var(--dark-grey);
    padding: 5rem 2rem 2rem;
    font-family: 'Inter', sans-serif;
}

.footer-logo {
    width: auto;
    height: 120px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.footer-logo:hover {
    transform: scale(1.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; /* desktop layout */
    gap: 3rem;
    padding-bottom: 2rem;
}

.footer-brand p {
    line-height: 1.8;
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #f5f5f5;
    backdrop-filter: blur(6px);
    border: 1px solid #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: #333333;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color:var(--dark-grey);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    position: relative;
}
.footer-column h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--dark-grey-mountain);
    margin-top: 6px;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--medium-grey);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.2s ease;
}
.footer-links a:hover {
    color: #000;
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--medium-grey);
    font-size: 0.875rem;
    position: relative;
}

.footer-bottom-line {
    width: 80px;
    height: 2px;
    background: #555555;
    margin: 0 auto 1rem;
    border-radius: 2px;
}

/* ===== RESPONSIVE FOOTER ===== */

/* Tablet: 2-column grid */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile: 2 columns per row using flex (left & right) */
@media (max-width: 600px) {
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0 !important;
    }
.footer{padding: 3rem 2rem 2rem !important;}
    .footer-social {justify-content: center !important;}
    .footer-brand
    {
        margin-bottom: 30px;
        text-align: center;
        width: 100%; /* two columns per row */
    }
    .footer-column {
        margin-bottom: 20px;

        width: 48%; /* two columns per row */
    }
    .footer-social {
        justify-content: flex-start;
        margin-top: 1rem;
    }

    .footer-column h4::after {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Very small screens: keep two columns but reduce width */
@media (max-width: 400px) {
    .footer-brand
    {
        width: 100%; /* two columns per row */
    }
    .footer-column {
        margin-bottom: 14px;
        width: 48%; /* two columns per row */
    }
    .footer-social {
        justify-content: center;
    }
    .footer-content {
        text-align: center;
    }
}


/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: #000;
    margin: 5px 0;
    transition: 0.3s;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .floating-stats {
        display: none;
    }

    .about-preview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 1100px) {
    .navbar {position: fixed !important;border-bottom: 1px solid rgba(0, 0, 0, 0.08);}
    .contact-info {
        display: none;
    }
    .testimonial-right p {
        font-size: 14px !important;
    }

    .nav-links {
        display: none;
        margin-left: 0px !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
        background-color:#fff;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
/* .hero{
    padding-top: 120px !important;
} */
    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .packages-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
        line-height: normal !important;
    }

    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 60px;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-content {
        width: 100%;
        margin-left: 20px !important;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .services-main-section {
        padding: 4rem 0;
    }

    .services-primary-container {
        padding: 0 1.5rem;
    }

    .services-category-title {
        font-size: 2rem;
    }

    .services-modern-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-premium-card {
        padding: 2rem 1.5rem;
    }

    .services-cta-title {
        font-size: 2rem;
    }

    .services-cta-section {
        padding: 3rem 2rem;
    }

    .comparison-table {
        margin: 2rem -1rem;
        padding: 0;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1.25rem 1rem;
        font-size: 0.9rem;
    }
    
    .comparison-table th {
        font-size: 0.85rem;
    }
    
    .comparison-table .text-success i,
    .comparison-table .text-danger i {
        font-size: 1.5rem;
    }
    
    .comparison-table td.text-start {
        padding-left: 1.5rem;
    }



    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-content {padding: 40px 20px !important;}

  
    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .services-modern-grid {
        grid-template-columns: 1fr;
    }

    .services-category-title {
        font-size: 1.75rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .comparison-table th {
        font-size: 0.75rem;
        padding: 1.5rem 0.75rem;
    }
}





.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-row {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
    gap: 4rem;
}

.service-row-left {
    flex-direction: row;
}

.service-row-right {
    flex-direction:unset;
}

.service-content {
    flex: 1;
}

.service-image {
    flex: 1;
    border-radius: 8px;
    max-height: 400px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.03);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 2rem;
}


/* Icon Nudge Animation for service-link icons */
@keyframes nudge {
    0% { transform: translateX(0); }
    50% { transform: translateX(10px); } /* move slightly right */
    100% { transform: translateX(0); }  /* return to original */
}

.service-link i {
    display: inline-block;
    margin-left: 5px;
    animation: nudge 1.5s infinite ease-in-out;
}


.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--dark-grey);
    font-weight: 600;
    width: 100%;
    text-decoration: none;
    transition: color 0.2s ease;
}



/* Responsive Design */
@media (max-width: 992px) {
    .blog__main__section__wrapper__container {
        flex-wrap: wrap;
    }
    .blog__main__section__wrapper__container .services__header__content__section {width: 100% !important;}
    .blog__main__section__wrapper__container .blog_image_partition {width: 100% !important;flex-wrap: wrap;}
    .blog_image_partition .blog_card {width: 100% !important;margin-bottom: 40px !important;}
    .blog_image_partition .blog_card .image-box {height: 300px !important;}
    .service-row {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .service-row-right {
        flex-direction: column;
    }
    
    .service-image {
        order: -1;
    }

}




.testimonial__section__wrapper {
  
    width: 100%;
    margin: 0 auto;
}

.testimonial__header__container {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial__main__heading {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.testimonial__carousel__container {
    position: relative;
    padding: 0 30px;
}

.testimonial__cards__wrapper {
    overflow: hidden;
    padding: 10px 0;
}

.testimonial__cards__track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.testimonial__individual__card {
    min-width: calc(33.333% - 20px);
    background:#fff;
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial__individual__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.testimonial__author__profile__section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.testimonial__author__image__container {
    position: relative;
}

.testimonial__author__profile__image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--dark-grey);
}

.testimonial__author__details__wrapper {
    flex: 1;
}

.testimonial__author__full__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}

.testimonial__author__job__title {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
}

.testimonial__company__organization__name {
    display: block;
    color: #4a5568;
    margin-top: 2px;
}

.testimonial__quote__text__content {
    font-size: 1rem;
    line-height: 1.8;
    color: #2d3748;
    text-align: left;
}

.testimonial__navigation__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial__navigation__button:hover {
    background: var(--dark-grey);
    color: #fff;
   
}

.testimonial__navigation__button:hover svg {
    stroke: white;
}

.testimonial__navigation__button:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial__navigation__button__previous {
    left: 0;
}

.testimonial__navigation__button__next {
    right: 0;
}

.testimonial__navigation__button svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark-grey);
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.testimonial__navigation__button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonial__navigation__button:disabled:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial__navigation__button:disabled:hover svg {
    stroke: #667eea;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .testimonial__individual__card {
        min-width: calc(50% - 15px);
    }
}

@media screen and (max-width: 768px) {
    .testimonial__main__heading {
        font-size: 2.5rem;
    }

    .testimonial__carousel__container {
        padding: 0 50px;
    }

    .testimonial__individual__card {
        min-width: 100%;
    }

    .testimonial__individual__card {
        padding: 30px 25px;
    }

    .testimonial__navigation__button {
        width: 40px;
        height: 40px;
    }

    .testimonial__navigation__button svg {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 480px) {
    .testimonial__main__heading {
        font-size: 2rem;
    }

    .testimonial__carousel__container {
        padding: 0 40px;
    }

    .testimonial__individual__card {
        padding: 25px 20px;
    }

    .testimonial__author__profile__image {
        width: 60px;
        height: 60px;
    }

    .testimonial__author__full__name {
        font-size: 1.1rem;
    }

    .testimonial__quote__text__content {
        font-size: 0.95rem;
    }
}

.packages-page .package-features li i{
    margin-right: 10px;
}
.packages-page .package-features li {
    margin-bottom: 15px;
}


.typing-text {
    border-right: 3px solid var(--dark-grey);
    padding-right: 5px;
    white-space: nowrap;
    overflow: hidden;
    animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}
p{
font-family: "Montserrat";    
}

/* .partners-section {
    background: #f8fafc;
    padding: 45px 0;
    text-align: center;
    overflow: hidden;
  }
  
  .partners-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #001f3f;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
  }
   */
   .partners-slider {
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: grab;
  }
  
  .partners-slider:active {
    cursor: grabbing;
  }
  
  .slider-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: calc(200%);
    animation: scroll 18s linear infinite; /* FASTER (was 18s) */
    will-change: transform;
  }
  
  .slider-track img {
    height: 70px;
    width: auto;
    object-fit: cover;
    transition: transform 0.1s ease;
  }
  
  .slider-track img:hover {
    transform: scale(1.05);
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Mobile adjustments */
  @media (max-width: 768px) {
    .slider-track {
      gap: 50px;
      animation-duration: 8s; /* Even faster on mobile */
    }
    .slider-track img {
      height: 60px;
    }
  }
    

  /* ====== Section Layout ====== */
  .testimonial-section {
    background: var(--offwhite-bg);
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
  }
  
  .testimonial-heading {
    color: #001f3f;
    font-size: 1.8rem;
    margin-bottom: 50px;
    font-weight: 600;
  }
  
  /* ====== Slider Container ====== */
  .testimonial-slider-wrapper {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .testimonial-slider {
    display: flex;
    transition: transform 0.8s ease-in-out;
  }
  
  /* ====== Each Slide ====== */
  .testimonial-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .testimonial-left {
    flex: 1;
    text-align: center;
  }
  
  .testimonial-left img {
    width: auto;
    height: 80px;
  
    /* background: #fff; */
    /* border-radius: 8px; */
    /* padding: 10px; */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
  }
  
  .testimonial-left h3 {
    margin-top: 15px;
    font-weight: 400;
    color: var(--dark-grey);
    font-family: "Montserrat";
    font-size: 1.5rem;
  }
  
  .testimonial-right {
    flex: 2;
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    text-align: left;
    /* box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05); */
    min-height: 180px;
  }
  
  .testimonial-right p {
    color: var(--dark-grey);
    font-size: 1rem;
    line-height: 1.6;
    font-family: "montserrat";
    margin-bottom: 15px;
  }
  
  .testimonial-right strong {
    color: var(--dark-grey);
    font-weight: 600;
    font-family: "montserrat";
  }
  
  /* ====== Indicators ====== */
  .testimonial-indicators {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .dot {
    width: 10px;
    /* border: 1px solid #ddd; */
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .dot.active {
    background: var(--dark-grey);
    transform: scale(1.2);
  }
  
  /* ====== Responsive ====== */
  @media (max-width: 768px) {
    .testimonial-slide {
      flex-direction: column;
      text-align: center;
    }
  
    .testimonial-right {
      text-align: center;
      padding: 25px;
    }

  
    .testimonial-left h3 {
      font-size: 1rem;
    }
  }
  .contact-section .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.contact-section .form-section {
    background: #fff;
   border-top-left-radius: 16px;
   border-bottom-left-radius: 16px;
    border:1px solid #ddd;
    padding: 60px 50px;
}

.contact-section .info-section {
    background: var(--dark-grey);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    color: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-section .form-group {
    margin-bottom: 25px;
}

.contact-section .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-grey);
    font-weight: 500;
    font-size: 14px;
    font-family: "Montserrat";
}



.contact-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-section .submit-btn {
    background: var(--dark-grey);
    color: white;
    border: none;
    padding: 15px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
    font-family: "montserrat";
    letter-spacing: 1px;
}


.contact-section .submit-btn:active {
    transform: translateY(0);
}

.contact-section .info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-section .info-section h1 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.contact-section .info-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
}

.contact-section .info-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.contact-section .phone-number {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 10px 0 20px 0;
}

.contact-section .success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.contact-section .success-message.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-section .content-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-section .form-section {
        padding: 40px 30px;
    }

    .contact-section .info-section {
        padding: 40px 30px;
    }

    .contact-section .info-section h1 {
        font-size: 36px;
    }

    .contact-section .info-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .contact-section .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-section .form-section {
        padding: 30px 20px;
    }

    .contact-section .info-section {
        padding: 30px 20px;
    }

    .contact-section .info-section h1 {
        font-size: 28px;
    }

    .contact-section .info-section h2 {
        font-size: 24px;
    }

    .contact-section .info-section h3 {
        font-size: 18px;
    }

    .contact-section .phone-number {
        font-size: 20px;
    }

    .contact-section .submit-btn {
        width: 100%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .contact-section .container {
        border-radius: 15px;
    }

    .contact-section .info-section h1 {
        font-size: 24px;
    }

    .contact-section .info-section h2 {
        font-size: 20px;
    }
}


.section-1 {
    padding: 80px 20px;
    /* background-color: #f9f9f9; */
}

.section-1 .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-1 .section-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap; /* allow stacking on small screens */
}

.section-1 .text-content {
    flex: 1 1 500px;
}

.section-1 .text-content h3 {
    font-size: 35px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    display: inline-block; /* so the underline fits the text width */
}

.section-1 .text-content h3::after {
    content: "";
    display: block;
    width: 35%; /* half the width of the title */
    height: 3px; /* thickness of the line */
    background-color: var(--dark-grey); /* color of the line */
    margin-top: 8px; /* space between text and line */
}


.section-1 .text-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

.section-1 .image-content {
    flex: 1 1 400px;
    text-align: center;
}

.section-1 .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-1 .section-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .section-1 .text-content {
        order: 2;
    }

    .section-1 .image-content {
        order: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .section-1 {
        padding: 50px 15px;
    }

    .section-1 .text-content h3 {
        font-size: 24px;
    }

    .section-1 .text-content p {
        font-size: 15px;
    }
}


.pricing__cards__grid__layout__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    /* max-width: 1200px; */
    width: 100%;
}

.pricing__individual__card__wrapper {
    background: linear-gradient(135deg, var(--ultra-light-grey) 0%, var(--light-grey) 100%);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--light-grey);
}

.pricing__individual__card__wrapper:hover {
    transform: translateY(-8px);
   
}

.pricing__individual__card__wrapper.efficient__plan__styling {
    background: linear-gradient(
        135deg,
        var(--ultra-light-grey) 0%,
        var(--light-grey) 100%
    );
}

.pricing__individual__card__wrapper.efficient__plan__styling .pricing__plan__category__label,
.pricing__individual__card__wrapper.efficient__plan__styling .pricing__amount__value__text,
.pricing__individual__card__wrapper.efficient__plan__styling .pricing__billing__period__suffix,
.pricing__individual__card__wrapper.efficient__plan__styling .pricing__plan__description__text,
.pricing__individual__card__wrapper.efficient__plan__styling .pricing__feature__text__content {
    color: var(--dark-grey);
}


.pricing__individual__card__wrapper.efficient__plan__styling .pricing__checkmark__icon__container {
    background-color: var(--white);
}

.pricing__individual__card__wrapper.efficient__plan__styling .pricing__checkmark__icon__container::after {
    color: var(--primary-black);
}


.pricing__individual__card__wrapper.efficient__plan__styling .pricing__cta__button__element:hover {
    background-color: var(--ultra-light-grey);
}


.pricing__individual__card__wrapper.team__plan__styling .pricing__plan__category__label,
.pricing__individual__card__wrapper.team__plan__styling .pricing__amount__value__text,
.pricing__individual__card__wrapper.team__plan__styling .pricing__billing__period__suffix,
.pricing__individual__card__wrapper.team__plan__styling .pricing__plan__description__text,
.pricing__individual__card__wrapper.team__plan__styling .pricing__feature__text__content {
    color: var(--dark-grey);
}

.pricing__individual__card__wrapper.team__plan__styling .pricing__checkmark__icon__container {
    background-color: var(--white);
}

.pricing__individual__card__wrapper.team__plan__styling .pricing__checkmark__icon__container::after {
    color: var(--primary-black);
}



.pricing__individual__card__wrapper.team__plan__styling .pricing__cta__button__element:hover {
    background-color: var(--ultra-light-grey);
}

.pricing__plan__category__label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-grey);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.pricing__cost__display__wrapper {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
}

.pricing__amount__value__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-black);
    line-height: 1;
    letter-spacing: -2px;
}

.pricing__billing__period__suffix {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-grey);
    margin-left: 4px;
}

.pricing__plan__description__text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--medium-grey);
    margin-bottom: 28px;
    line-height: 1.5;
}

.pricing__features__list__container {
    list-style: none;
    margin-bottom: auto;
    padding-bottom: 32px;
}

.pricing__feature__item__wrapper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--accent-grey);
}

.pricing__feature__item__wrapper:last-child {
    margin-bottom: 0;
}

.pricing__checkmark__icon__container {
    width: 24px;
    height: 24px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}


.pricing__feature__text__content {
    line-height: 1.6;
}

.pricing__action__button__wrapper {
    width: 100%;
}

.pricing__cta__button__element {
    width: 100%;
    background-color:var(--white) ;
    color: var(--primary-black);
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.pricing__cta__button__element:hover {
    background-color: var(--accent-grey);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.pricing__cta__button__element:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .pricing__cards__grid__layout__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing__individual__card__wrapper:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .pricing__cards__grid__layout__container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing__individual__card__wrapper:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .pricing__individual__card__wrapper {
        padding: 32px 24px;
    }

    .pricing__amount__value__text {
        font-size: 52px;
    }
}

@media (max-width: 480px) {
    .pricing__main__wrapper__container {
        padding: 24px 16px;
    }

    .pricing__individual__card__wrapper {
        padding: 28px 20px;
    }

    .pricing__amount__value__text {
        font-size: 48px;
    }

    .pricing__plan__category__label {
        font-size: 14px;
    }

    .pricing__plan__description__text {
        font-size: 14px;
    }

    .pricing__feature__item__wrapper {
        font-size: 14px;
    }

    .pricing__cta__button__element {
        font-size: 15px;
        padding: 14px 20px;
    }
}

.audit__request__modal__overlay__backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9998;
    animation: fadeIn 0.3s ease;
}

.audit__request__modal__overlay__backdrop.active__modal__state {
    display: block;
}

.audit__request__modal__container__wrapper {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

.audit__request__modal__container__wrapper.active__modal__state {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.audit__request__modal__header__section {
    padding: 30px 40px 20px;
    border-bottom: 2px solid var(--ultra-light-grey);
    position: relative;
}

.audit__request__modal__title__heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background:#000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.audit__request__modal__close__button {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--medium-grey);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.audit__request__modal__close__button:hover {
    color: var(--primary-black);
}

.audit__request__stepper__progress__container {
    display: flex;
    justify-content: space-between;
    padding: 40px 40px 30px;
    position: relative;
}

.audit__request__stepper__progress__container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 40px;
    right: 40px;
    height: 3px;
    background-color: var(--ultra-light-grey);
    z-index: 0;
}

.audit__request__stepper__step__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.audit__request__stepper__step__circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-grey);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 3px solid var(--white);
}

.audit__request__stepper__step__item.completed__step__state .audit__request__stepper__step__circle {
    background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
}

.audit__request__stepper__step__item.active__step__state .audit__request__stepper__step__circle {
    background: #fff;
    color: #000;
    border:1px solid #ddd;
    box-shadow: 0 0 10px #ddd;
    transform: scale(1.1);
}

.audit__request__stepper__step__label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--medium-grey);
    text-align: center;
}

.audit__request__stepper__step__item.active__step__state .audit__request__stepper__step__label {
    color: var(--primary-black);
}

.audit__request__stepper__step__item.completed__step__state .audit__request__stepper__step__label {
    color: var(--success-green);
}

.audit__request__form__content__area {
    padding: 30px 40px 40px;
}

.audit__request__form__step__section {
    display: none;
}

.audit__request__form__step__section.active__step__state {
    display: block;
    animation: fadeSlideIn 0.4s ease;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.audit__request__step__title__heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 8px;
}

.audit__request__step__divider__line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan-accent) 0%, transparent 100%);
    margin-bottom: 30px;
}

.audit__request__form__group__container {
    margin-bottom: 24px;
}

.audit__request__form__label__text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-black);
    display: block;
    margin-bottom: 8px;
}

.audit__request__required__field__indicator {
    color: var(--error-red);
    margin-left: 4px;
}

.audit__request__form__input__field,
.audit__request__form__select__dropdown,
.audit__request__form__textarea__field {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--primary-black);
    transition: all 0.3s ease;
    background-color: var(--white);
}

.audit__request__form__input__field:focus,
.audit__request__form__select__dropdown:focus,
.audit__request__form__textarea__field:focus {
    outline: none;
    border-color: var(--cyan-accent);

}

.audit__request__form__textarea__field {
    resize: vertical;
    min-height: 120px;
}

.audit__request__form__row__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.audit__request__services__grid__layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 24px;
}

.audit__request__service__card__option {
    border: 2px solid var(--light-grey);
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.audit__request__service__card__option:hover {
    border-color: var(--cyan-accent);
    transform: translateY(-3px);
    /* box-shadow: 0 4px 12px rgba(34, 211, 238, 0.2); */
}

.audit__request__service__card__option.selected__service__state {
    border: 2px solid var(--cyan-accent); 
    background: var(--color-light-grey); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* subtle shadow for depth */
    transform: scale(1.02); /* slight pop effect */
    transition: all 0.3s ease; /* smooth animation */
}


.audit__request__service__icon__display {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--cyan-accent);
}

.audit__request__service__name__label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-black);
}

.audit__request__checkbox__options__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.audit__request__checkbox__wrapper__item {
    display: flex;
    align-items: center;
}

.audit__request__checkbox__input__element {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: var(--cyan-accent);
}

.audit__request__checkbox__label__text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-black);
    cursor: pointer;
}

.audit__request__radio__options__group {
    display: flex;
    gap: 20px;
}

.audit__request__radio__wrapper__item {
    display: flex;
    align-items: center;
}

.audit__request__radio__input__element {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: var(--cyan-accent);
}

.audit__request__radio__label__text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-black);
    cursor: pointer;
}

.audit__request__form__actions__footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px 30px;
    border-top: 2px solid var(--ultra-light-grey);
}

.audit__request__navigation__button {
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audit__request__previous__step__button {
    background-color: var(--ultra-light-grey);
    color: var(--primary-black);
    border: 2px solid var(--light-grey);
}

.audit__request__previous__step__button:hover {
    background-color: var(--light-grey);
}

.audit__request__next__step__button,
.audit__request__submit__form__button {
    border: 1px solid #ddd;
    background: #fff;
    color: #000;
    /* box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3); */
}

.audit__request__next__step__button:hover,
.audit__request__submit__form__button:hover {
    transform: translateY(-2px);
   
}

.audit__request__navigation__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.audit__request__error__message__text {
    color: var(--error-red);
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.audit__request__error__message__text.visible__error__state {
    display: block;
}

@media (max-width: 768px) {
    .hero-badge span {font-size: 12px !important;}
   
    .audit__request__modal__header__section {
        padding: 20px 24px 16px;
    }
    .section-title {font-size: 36px !important;line-height: normal !important;}

    .audit__request__modal__title__heading {
        font-size: 22px;
    }

    .audit__request__modal__close__button {
        top: 20px;
        right: 24px;
    }

    .audit__request__stepper__progress__container {
        padding: 30px 24px 20px;
    }

    .audit__request__stepper__step__circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .audit__request__stepper__step__label {
        font-size: 12px;
    }

    .audit__request__form__content__area {
        padding: 20px 24px 30px;
    }

    .audit__request__form__row__layout {
        grid-template-columns: 1fr;
    }

    .audit__request__services__grid__layout {
        grid-template-columns: repeat(3, 1fr);
    }

    .audit__request__checkbox__options__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .audit__request__form__actions__footer {
        padding: 16px 24px 24px;
    }
}

@media (max-width: 480px) {
    .audit__request__services__grid__layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .audit__request__checkbox__options__container {
        grid-template-columns: 1fr;
    }
}

.services__main__section__wrapper__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.services__header__content__section {
    margin-bottom: 50px;
}

.services__category__label__text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--medium-grey);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.services__main__title__heading {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--dark-grey);
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 600px;
}

.services__description__paragraph__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--medium-grey);
    line-height: 1.7;
    max-width: 800px;
}

.services__cards__grid__layout__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.services__cards__grid__layout__container.second__row__layout {
    grid-template-columns: repeat(4, 1fr);
}

.services__individual__card__wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.services__individual__card__wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.services__card__image__container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.services__card__image__element {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.4s ease;
}

.services__individual__card__wrapper:hover .services__card__image__element {
    transform: scale(1.05);
}

.services__card__overlay__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.services__card__content__info__section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px;
    z-index: 2;
}

.services__card__title__heading__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.services__card__action__link__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.services__individual__card__wrapper:hover .services__card__action__link__button {
    gap: 16px;
}

.services__card__arrow__icon__element {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.services__card__arrow__icon__element svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    stroke-width: 2;
    fill: none;
}

.services__individual__card__wrapper:hover .services__card__arrow__icon__element {
    transform: translateX(4px);
}

/* Placeholder images with different colors */
.services__individual__card__wrapper:nth-child(1) .services__card__image__container {
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}

.services__individual__card__wrapper:nth-child(2) .services__card__image__container {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
}

.services__individual__card__wrapper:nth-child(3) .services__card__image__container {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
}

.services__individual__card__wrapper:nth-child(4) .services__card__image__container {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.services__individual__card__wrapper:nth-child(5) .services__card__image__container {
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
}

.services__individual__card__wrapper:nth-child(6) .services__card__image__container {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
}

@media (max-width: 1200px) {
    .services__cards__grid__layout__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .services__cards__grid__layout__container.second__row__layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services__main__title__heading {
        font-size: 42px;
    }

    .services__cards__grid__layout__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .services__cards__grid__layout__container.second__row__layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .services__individual__card__wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .services__main__title__heading {
        font-size: 36px;
    }

    .services__cards__grid__layout__container {
        grid-template-columns: 1fr;
    }

    .services__cards__grid__layout__container.second__row__layout {
        grid-template-columns: 1fr;
    }

    .services__individual__card__wrapper {
        height: 380px;
    }

    .services__card__title__heading__text {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .services__main__title__heading {
        font-size: 32px;
    }

    .services__individual__card__wrapper {
        height: 350px;
    }

    .services__card__content__info__section {
        padding: 24px 20px;
    }

    .services__card__title__heading__text {
        font-size: 22px;
        margin-bottom: 16px;
    }
}
.blog__main__section__wrapper__container{
    display: flex;
    justify-content: space-between;
   
}
.blog__main__section__wrapper__container .services__header__content__section{
    width: 45%;
}
.blog__main__section__wrapper__container .blog_image_partition{
    display: flex;
    gap: 20px;
   
    width: 50%;
}
.blog_image_partition  .blog_card{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
    color: var(--dark-grey);
}
.blog_image_partition  .blog_card .image-box{
    height: 420px;
    width: 100%;
 cursor: pointer;
}
.blog_image_partition  .blog_card .image-box:hover img{
filter: brightness(50%);
transition: all .1s ease-in-out;
}
.blog_image_partition  .blog_card .image-box img{
    height: 100%;
    border-radius: 12px;
    object-fit: cover;

    width: 100%;
}
.blog_image_partition  .blog_card .date{
    font-size: 14px;
    font-weight: 600;
    font-family: "Montserrat";
}
.blog_image_partition  .blog_card .blog-title{
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 22px;
}
.blog_image_partition  .blog_card .blog-description{
    font-size: 16px;
    color: var(--medium-grey);
    font-family: "Inter";
}




.client-feedback-main-section {
    width: 100%;
 margin-bottom: 60px;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.feedback-two-column-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #ddd;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
}

.client-feedback-form-section {
    padding: 45px 40px;
    background: #f8f8f8;
}

.feedback-form-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: var(--dark-grey);
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.feedback-form-description-text {
    color: #404040;
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.5;
}

.feedback-submission-success-message {
    background: #10b981;
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
    animation: slideDown 0.4s ease;
    font-weight: 500;
    font-size: 14px;
}

.feedback-submission-success-message.show {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feedback-submission-success-message::before {
    content: "✓";
    font-size: 18px;
    font-weight: bold;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.feedback-form-input-group {
    margin-bottom: 16px;
}

.feedback-form-input-label {
    display: block;
    margin-bottom: 10px;
    color: var(--dark-grey);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
}

.feedback-form-text-input,
.feedback-form-textarea-input,
.feedback-form-select-dropdown {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    color: var(--dark-grey);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.feedback-form-text-input::placeholder,
.feedback-form-textarea-input::placeholder {
    color: #6b6b6b;
}

.feedback-form-text-input:focus,
.feedback-form-textarea-input:focus,
.feedback-form-select-dropdown:focus {
    outline: none;
    border-color: var(--dark-grey);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.feedback-form-textarea-input {
    resize: vertical;
    min-height: 70px;
}

.feedback-form-two-column-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.feedback-form-three-column-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.services-checkbox-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.service-checkbox-label-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #404040;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    padding: 9px 12px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.service-checkbox-label-wrapper:hover {
    border-color: var(--dark-grey);
    background: #ffffff;
}

.service-checkbox-input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--dark-grey);
}

.service-rating-compact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.service-rating-item-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-rating-label-text {
    color: #404040;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.service-rating-select-dropdown {
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    color: var(--dark-grey);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-rating-select-dropdown:hover {
    border-color: var(--dark-grey);
}

.feedback-form-submit-button {
    width: 100%;
    padding: 14px;
    background: #fff;
    color: #000;
    border: 1px solid #ddd;

    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.feedback-form-submit-button:hover {
    transform: translateY(-2px);
  
}

.feedback-form-submit-button:active {
    transform: translateY(0);
}

.company-information-right-section {
    background: #ffffff;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    border-left: 1px solid #e5e5e5;
}

.company-info-small-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #404040;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.company-info-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: var(--dark-grey);
    margin-bottom: 14px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.company-info-subtitle-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #404040;
    margin-bottom: 24px;
    font-weight: 600;
}

.company-info-description-paragraph {
    color: #6b6b6b;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 14px;
}

.company-contact-email-box {
    background: #f8f8f8;
    padding: 18px 20px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    margin: 24px 0;
    text-align: center;
}

.company-email-box-label {
    font-size: 11px;
    color: #404040;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.company-email-address-text {
    font-size: 16px;
    color: var(--dark-grey);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
}

.company-info-feature-cards-container {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.company-info-feature-card {
    background: #f8f8f8;
    padding: 18px 20px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.company-info-feature-card:hover {
    border-color: var(--dark-grey);
    transform: translateY(-2px);
}

.feature-card-header-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.feature-card-icon-wrapper {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.feature-card-title-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--dark-grey);
    font-weight: 700;
}

.feature-card-description-text {
    color: #404040;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.company-statistics-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}

.company-statistic-box-item {
    background: #f8f8f8;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    text-align: center;
}

.statistic-number-display {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: var(--dark-grey);
    font-weight: 800;
    margin-bottom: 4px;
}

.statistic-label-text {
    font-size: 12px;
    color: #404040;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .feedback-two-column-content-wrapper {
        grid-template-columns: 1fr;
    }

    .company-information-right-section {
        border-left: none;
        border-top: 1px solid #e5e5e5;
    }
}

@media (max-width: 768px) {
    .feedback-form-two-column-row,
    .feedback-form-three-column-row,
    .service-rating-compact-grid,
    .services-checkbox-grid-container,
    .company-statistics-grid-container {
        grid-template-columns: 1fr;
    }

    .client-feedback-form-section,
    .company-information-right-section {
        padding: 30px 25px;
    }

    .feedback-form-main-heading {
        font-size: 24px;
    }

    .company-info-main-title {
        font-size: 26px;
    }
}

.feedback-form-select-dropdown,
.service-rating-select-dropdown {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 36px;
}
.about-section-stats .stat-number{
    font-size: 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    box-shadow: none;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.blog-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.blog-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.blog-date,
.blog-author {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.blog-category {
    display: inline-block;
    padding: 6px 14px;
    background-color: #1a1a1a;
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.4;
}

.blog-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

.read-more::after {
    content: "→";
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

}

@media (max-width: 768px) {


    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-image {
        height: 280px;
    }

    .blog-content {
        padding: 24px;
    }

    .blog-title {
        font-size: 1.375rem;
    }
}

@media (max-width: 480px) {

    .blog-image {
        height: 240px;
    }

    .blog-meta {
        gap: 12px;
    }

    .blog-title {
        font-size: 1.25rem;
    }

    .blog-description {
        font-size: 0.9375rem;
    }
}