@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #5274ff;
    --secondary: #fe5d87;
    --accent: #a155f3;
    --heading: #161c2d;
    --text: #6b7280;
    --gradient-bar: linear-gradient(90deg, #ff5d82, #b84efa, #3e7eff);
    --gradient-text: linear-gradient(90deg, #ff5d82, #3e7eff);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Sora', sans-serif; }
body {
    background-color: #fcfdfe;
    color: var(--text);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(254, 93, 135, 0.08) 0%, transparent 45%), 
        radial-gradient(circle at 90% 80%, rgba(82, 116, 255, 0.08) 0%, transparent 45%),
        linear-gradient(135deg, #ffffff 0%, #fafdff 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    line-height: 1.6;
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* Helpers */
.text-gradient {
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.text-underline { position: relative; z-index: 1; display: inline-block; }
.text-underline::after {
    content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 8px;
    background: var(--gradient-bar); opacity: 0.3; z-index: -1; border-radius: 4px;
}
.section-subtitle {
    font-weight: 600; color: var(--heading); display: inline-flex; align-items: center; gap: 8px; font-size: 1rem; margin-bottom: 15px;
}
.section-subtitle::before {
    content: ''; width: 12px; height: 2px; background: var(--secondary);
}

/* Base Nav */
.top-bar-grad { background: var(--gradient-bar); color: #fff; padding: 10px 5%; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; font-weight: 600; }
.top-bar-pill { background: rgba(255,255,255,0.2); padding: 4px 12px; border-radius: 50px; font-weight: 700; margin-left: 10px; }

.navbar {
    display: flex; justify-content: space-between; align-items: center; padding: 15px 5%;
    background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: sticky; top: 0; z-index: 100;
}
.brand img { height: 48px; width: auto; object-fit: contain; cursor: pointer; }

/* Desktop Elements */
.nav-links { display: flex; gap: 30px; align-items: center; transition: all 0.3s; }
.nav-links a { font-weight: 600; color: var(--heading); font-size: 0.95rem; transition: color 0.3s; }
.nav-links a.active, .nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 15px; }

.nav-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--heading); cursor: pointer; }
.btn-pill { background: #fff; color: var(--heading); padding: 10px 24px; border-radius: 50px; font-weight: 700; box-shadow: var(--shadow-soft); display: inline-flex; align-items: center; gap: 10px; border: none; cursor: pointer; transition: transform 0.3s; }
.btn-pill:hover { transform: translateY(-2px); }
.btn-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.side-social { position: fixed; right: 30px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 40px; z-index: 50; }
.side-social a { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 0.85rem; font-weight: 600; color: var(--heading); letter-spacing: 1px; transition: color 0.3s; }

/* Hero */
.hero { display: grid; grid-template-columns: 1fr 1fr; padding: 50px 5% 80px; min-height: 80vh; align-items: center; position: relative; }
.hero-copy h1 { font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 25px; color: var(--heading); }
.hero-copy p { font-size: 1.1rem; max-width: 480px; margin-bottom: 40px; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; z-index: 1; }
.hero-visual img { max-width: 90%; z-index: 2; position: relative; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1)); }
.float-card { position: absolute; background: #fff; padding: 15px; border-radius: 12px; box-shadow: var(--shadow-card); z-index: 3; }
/* Hero Slider */
.hero-slider-wrapper { position: relative; overflow: hidden; width: 100%; }
.hero-slides { display: flex; transition: transform 0.5s ease-in-out; }
.hero-slides .slide { min-width: 100%; box-sizing: border-box; }
.slider-controls { position: absolute; bottom: 15px; left: 0; right: 0; display: flex; gap: 10px; justify-content: center; z-index: 10; }
.slide-dot { width: 12px; height: 12px; border-radius: 50%; border: none; background: #ccc; cursor: pointer; transition: background 0.3s; }
.slide-dot.active { background: var(--primary); }

/* Circle Image Wrapper */
.hero-image-wrapper {
    width: clamp(250px, 32vw, 420px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(82, 116, 255, 0.05), rgba(254, 93, 135, 0.05));
    border: 5px solid #fff;
    box-shadow: 0 30px 60px rgba(82, 116, 255, 0.15), inset 0 0 30px rgba(255, 255, 255, 0.5);
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-image-wrapper:hover img {
    transform: scale(1.08);
}

.hero-image-secondary {
    width: clamp(160px, 22vw, 280px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #fff;
    border: 5px solid #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: absolute;
    bottom: -10%;
    left: -5%;
    z-index: 3;
}
.hero-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-image-secondary:hover img {
    transform: scale(1.08);
}

/* Page Banners */
.page-banner {
    padding: 100px 5% 80px; text-align: center; background: var(--gradient-bar); position: relative;
    border-radius: 0 0 50px 50px; margin-bottom: 60px; box-shadow: 0 20px 50px rgba(82, 116, 255, 0.15);
}
.page-banner h1 { font-size: clamp(3rem, 5vw, 4.5rem); color: #fff; margin-bottom: 15px; font-weight: 800; letter-spacing: -1px; }
.page-banner p { font-size: 1.15rem; color: rgba(255,255,255,0.9); max-width: 650px; margin: 0 auto; line-height: 1.6; }
.pb-cat { background: linear-gradient(135deg, #a155f3, #3e7eff); }
.pb-srv { background: linear-gradient(135deg, #fe5d87, #b84efa); }

/* Categories - Refined Visual Upgrade for Tighter Grid */
.categories-section { padding: 80px 5%; text-align: center; max-width: 1300px; margin: 0 auto; }
.categories-section h2 { font-size: 2.8rem; margin-bottom: 60px; color: var(--heading); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.cat-card {
    background: #fff; padding: 40px 30px; border-radius: 20px; display: flex; flex-direction: column; align-items: center; gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.02); position: relative; transition: all 0.4s ease; cursor: pointer;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(82,116,255,0.08); border-color: transparent; }
.cat-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--gradient-bar); color: #fff; font-size: 0.8rem; padding: 6px 16px; border-radius: 5px; font-weight: 700; z-index: 2; }
.cat-img { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; flex-shrink: 0; box-shadow: 0 15px 30px rgba(0,0,0,0.06); background: #fdfdfd; border: 4px solid #fff; }
.cat-img img { width: 100%; height: 100%; object-fit: contain; padding: 15px; }
.cat-content h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--heading); font-weight: 700; }
.cat-content p { font-size: 0.95rem; line-height: 1.6; color: var(--text); }

/* Services Section */
.services-section { padding: 80px 5%; }
.services-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
.services-head h2 { font-size: 2.5rem; color: var(--heading); }
.srv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.srv-card { border-radius: 15px; height: 420px; position: relative; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.04); cursor: pointer; }
.srv-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.srv-card:hover img { transform: scale(1.08); }
.srv-box {
    position: absolute; bottom: 20px; left: 20px; right: 20px; background: #fff; padding: 20px; border-radius: 10px;
    display: flex; justify-content: space-between; align-items: center; box-shadow: 0 15px 30px rgba(0,0,0,0.1); transition: transform 0.4s ease;
}
.srv-card:hover .srv-box { transform: translateY(-5px); }
.srv-box h4 { font-size: 1.1rem; color: var(--heading); }

/* Features */
.features-bar {
    display: flex; justify-content: space-around; padding: 40px 5%; background: #fff; box-shadow: var(--shadow-soft); margin: -40px 5% 50px; border-radius: 20px; position: relative; z-index: 10;
}
.feature-item { display: flex; align-items: flex-start; gap: 15px; max-width: 300px; }
.f-icon { font-size: 2rem; } .f-icon.i-blue { color: #3b82f6; } .f-icon.i-pink { color: var(--secondary); } .f-icon.i-yellow { color: #eab308; }
.feature-item h4 { margin-bottom: 5px; font-size: 1.1rem; color: var(--heading); }
.feature-item p { font-size: 0.85rem; line-height: 1.5; }

/* Dynamic Flowing Services Details */
.dynamic-services-section { padding: 40px 5% 80px; max-width: 1300px; margin: 0 auto; position: relative; z-index: 5; }
.service-block { display: flex; flex-wrap: wrap; gap: 60px; align-items: center; margin-bottom: 150px; position: relative; }
.service-block:nth-child(even) { flex-direction: row-reverse; }

.srv-text-content { flex: 1; min-width: 320px; position: relative; padding: 20px; }
.srv-title-num {
    font-size: 6rem; font-weight: 900; color: transparent;
    -webkit-text-stroke: 2px rgba(254, 93, 135, 0.15);
    position: absolute; top: -50px; left: -10px; z-index: 1;
}
.srv-block-title { font-size: 2.8rem; color: var(--heading); margin-bottom: 25px; position: relative; z-index: 2; line-height: 1.2; font-weight: 800; }
.srv-list { margin-bottom: 30px; position: relative; z-index: 2; }
.srv-list li { font-size: 1.1rem; color: var(--heading); margin-bottom: 15px; display: flex; align-items: center; font-weight: 600; }
.srv-list li i { background: rgba(82, 116, 255, 0.1); width: 28px; height: 28px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 0.8rem; margin-right: 15px; flex-shrink: 0; }
.srv-target-pill { display: inline-block; padding: 12px 25px; background: #fff; border-radius: 50px; color: var(--primary); font-weight: 700; box-shadow: 0 10px 30px rgba(82, 116, 255, 0.15); font-size: 1rem; border: 1px solid rgba(82, 116, 255, 0.1); position:relative; z-index: 2;}

.srv-images {
    flex: 1.2; min-width: 320px; display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 200px); gap: 20px; position: relative;
}
.srv-images img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); transition: transform 0.5s ease; border: 4px solid #fff; }
.srv-images img:hover { transform: translateY(-10px); }
.srv-images img:first-child { grid-row: span 2; height: 100%; }

/* Global CTA */
.global-cta { padding: 40px 5% 100px; text-align: center; }
.cta-box { background: var(--gradient-bar); border-radius: 30px; padding: 60px 5%; box-shadow: 0 20px 50px rgba(82, 116, 255, 0.2); max-width: 1100px; margin: 0 auto; color: #fff; position: relative; overflow: hidden; }
.cta-box h2 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 20px; font-weight: 800; letter-spacing:-1px; }
.cta-box p { font-size: 1.15rem; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.5; color: rgba(255,255,255,0.9);}

/* Quote Form Setup */
.quote-section { padding: 40px 5% 100px; }
.quote-wrapper { max-width: 800px; margin: 0 auto; background: #fff; padding: 50px; border-radius: 20px; box-shadow: var(--shadow-card); }
.premium-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; }
.form-group { margin-bottom: 25px; text-align: left; }
.form-group label { display: block; font-weight: 600; color: var(--heading); margin-bottom: 10px; font-size: 0.95rem; }
.premium-form input[type="text"], .premium-form input[type="email"], .premium-form select, .premium-form textarea { width: 100%; padding: 15px 20px; border: 1px solid rgba(0,0,0,0.1); border-radius: 10px; outline: none; font-size: 1rem; color: var(--text); background: #fdfdfd; transition: all 0.3s; font-family: 'Sora', sans-serif; }
.premium-form input:focus, .premium-form select:focus, .premium-form textarea:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(82, 116, 255, 0.1); }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; background: rgba(0,0,0,0.02); padding: 20px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.03);}
.cb-label { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; cursor: pointer; color: var(--heading); font-weight: 500;}
.cb-label input { width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; }
.submit-btn { background: var(--gradient-bar); color: #fff; border: none; padding: 18px 40px; border-radius: 50px; font-size: 1.1rem; font-weight: 700; width: 100%; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: transform 0.3s, box-shadow 0.3s; }
.submit-btn:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgba(254, 93, 135, 0.3); }

/* About Section Styles */
.about-section { display: grid; grid-template-columns: 1fr 1fr; padding: 60px 5% 100px; max-width: 1300px; margin: 0 auto; gap: 50px; align-items: center; }
.about-visual { position: relative; }
.about-visual img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-card); border: 5px solid #fff; }
.about-copy h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; margin-bottom: 20px; color: var(--heading); }
.about-copy p { font-size: 1.1rem; margin-bottom: 25px; line-height: 1.6; }
.tick-list { display: grid; gap: 15px; }
.tick-list li { display: flex; align-items: flex-start; gap: 15px; font-weight: 500; font-size: 1.05rem; color: var(--heading); }
.tick-list li i { color: var(--primary); margin-top: 4px; }

/* Mission Vision Grid */
.mvv-section { padding: 40px 5% 100px; max-width: 1300px; margin: 0 auto; }
.mvv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 30px; }
.core-values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: left; }
.mvv-card { background: #fff; padding: 40px; border-radius: 20px; box-shadow: var(--shadow-card); text-align: center; border: 1px solid rgba(0,0,0,0.02); transition: transform 0.3s; }
.mvv-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(82, 116, 255, 0.08); }
.mvv-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(82, 116, 255, 0.1); color: var(--primary); display: flex; justify-content: center; align-items: center; font-size: 2.2rem; margin: 0 auto 20px; }
.mvv-card.vision .mvv-icon { background: rgba(254, 93, 135, 0.1); color: var(--secondary); }
.mvv-card.values .mvv-icon { background: rgba(161, 85, 243, 0.1); color: var(--accent); }
.mvv-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--heading); font-weight: 700; }
.mvv-card p { font-size: 1.05rem; color: var(--text); line-height: 1.6; }

/* Footer Layout Setup */
.footer { background: #161c2d; padding: 80px 5% 30px; color: #a1a1aa; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-col h4 { color: #fff; font-size: 1.2rem; margin-bottom: 25px; }
.footer-col p { margin-bottom: 15px; line-height: 1.8; }
.footer-col a { display: block; color: #a1a1aa; margin-bottom: 15px; transition: color 0.3s; }
.footer-col a:hover { color: #fff; }
.contact-item { display: flex; gap: 15px; margin-bottom: 15px; align-items: flex-start; }
.contact-item i { color: var(--primary); font-size: 1.2rem; margin-top: 4px; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { background: rgba(255,255,255,0.05); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: background 0.3s; }
.social-icons a:hover { background: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 0.9rem; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); z-index: 1000; transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* Responsive Tweaks */
@media (max-width: 1024px) {
    .top-bar-grad { display: none; }
    .nav-menu-btn { display: block; }
    .nav-links {
        position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px 5%; box-shadow: 0 15px 30px rgba(0,0,0,0.1); display: none; gap: 20px;
    }
    .nav-links.active { display: flex; }
    .hero, .about-section { grid-template-columns: 1fr; text-align: center; padding-bottom: 100px; }
    .hero-copy p { margin: 0 auto 30px; }
    .features-bar { flex-direction: column; gap: 30px; align-items: center; text-align: center; margin-top: 40px; box-shadow: none; background: transparent; }
    .side-social { display: none; }
    .cat-grid, .srv-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-section { grid-template-columns: 1fr; text-align: left; }
    .mvv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .premium-form .form-grid { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: 1fr; }
    .quote-wrapper { padding: 30px 20px; }
    .cat-grid, .srv-grid, .mvv-grid, .core-values-grid { grid-template-columns: 1fr; }
    .service-block { flex-direction: column !important; gap: 30px; margin-bottom: 80px; padding: 0; }
    .srv-images { grid-template-columns: 1fr; grid-template-rows: auto; }
    .srv-images img { height: 250px; }
    .srv-images img:first-child { grid-row: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .page-banner { padding: 60px 5% 40px; border-radius: 0 0 30px 30px; }
    .page-banner h1 { font-size: 2.5rem; }
}
