:root {
    --bg-dark: #05080a;
    --primary-blue: #007bff;
    --cyan-glow: #00d2ff;
    --nav-height: 85px; /* මහත, Professional පෙනුමක් සඳහා */
    --glass-bg: rgba(10, 15, 20, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: #fff;
}

.header {
    position: fixed;
    top: 30px; /* උඩින් පාවෙන ලුක් එක */
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    width: 92%;
    max-width: 1200px;
    height: var(--nav-height);
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* Logo */
.logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}
.logo-accent { color: var(--primary-blue); }
.logo-main { color: #fff; font-weight: 300; margin-left: 3px; }

/* Menus */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-link {
    text-decoration: none;
    color: #888;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: 0.4s;
}

/* Hover Effect with Cyan Glow */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--cyan-glow));
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px var(--cyan-glow);
    border-radius: 10px;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.6);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: linear-gradient(135deg, #0056b3, #00d2ff);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.6);
}

/* Hero Section Main Styling */
.hero-section {
    position: relative;
    padding-top: 220px; /* Navbar එකෙන් පහළට ගන්න මෙතනින් පුළුවන් */
    padding-bottom: 120px;
    background: #05080a;
    display: flex;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-wrapper {
    width: 92%;
    max-width: 1200px;
    z-index: 5;
}

/* Typography Hierarchy */
.hero-title {
    font-size: 5.5rem; /* ලොකු Bold අකුරු */
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 30px;
    color: #fff;
}

.gradient-blue {
    background: linear-gradient(90deg, #007bff, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: #888;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 60px; /* බටන් එකට කලින් ඉඩ */
}

/* WhatsApp Button Styling */
.btn-whatsapp-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0056b3, #00b4db);
    color: #fff !important;
    text-decoration: none !important;
    padding: 20px 50px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.4);
    transition: 0.4s;
}

.btn-whatsapp-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 210, 255, 0.6);
}

/* Services Row - අලවිලා තිබුණ එක Fix කිරීම */
.services-row {
    margin-top: 120px; /* හෙරෝ අකුරු වලින් ගොඩක් පහළට */
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3කට බෙදීම */
    gap: 35px; /* Cards අතර පරතරය */
}

.s-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: 0.3s;
}

.s-card.highlighted {
    border-color: rgba(0, 210, 255, 0.4);
    background: rgba(0, 210, 255, 0.05);
}

.s-icon { font-size: 2rem; }
.s-info h3 { font-size: 1.2rem; color: #fff; margin-bottom: 5px; }
.s-info p { font-size: 0.9rem; color: #666; line-height: 1.4; }

/* Background Glow Effect */
.hero-glow-bg {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.12) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
}

/* Responsive */
@media (max-width: 950px) {
    .services-row { grid-template-columns: 1fr; }
    .hero-title { font-size: 3.5rem; }
}

/* Services Section Styles */
.services-section {
    padding: 100px 0;
    background: #05080a;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.blue-glow {
    color: var(--cyan-glow);
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.section-subtitle {
    color: #888;
    font-size: 1.1rem;
}

/* Grid Layout */
.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop එකේ පේළියට 3ක් */
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Card Design */
.service-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 45px 35px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.service-box:hover {
    transform: translateY(-12px);
    background: rgba(0, 123, 255, 0.05);
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 
                0 0 20px rgba(0, 210, 255, 0.1);
}

.s-icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: inline-block;
}

.service-box h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-box p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .services-container { grid-template-columns: repeat(2, 1fr); } /* Tablet එකේදී 2ක් */
}

@media (max-width: 600px) {
    .services-container { grid-template-columns: 1fr; } /* Mobile එකේදී 1ක් */
    .section-title { font-size: 2.2rem; }
}

/* Why Choose Us Styles */
.why-choose-us {
    padding: 100px 0;
    background: #05080a;
    text-align: center;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--cyan-glow);
    margin: 15px auto 0;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--cyan-glow);
}

.features-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    transition: 0.4s ease;
}

/* Hover Effect */
.feature-item:hover {
    background: rgba(0, 123, 255, 0.04);
    border-color: rgba(0, 210, 255, 0.3);
    transform: translateY(-10px);
}

.f-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 123, 255, 0.1);
    color: var(--cyan-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 210, 255, 0.2);
    transition: 0.3s;
}

.f-icon svg {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 0 5px var(--cyan-glow));
}

.feature-item:hover .f-icon {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.feature-item p {
    color: #888;
    line-height: 1.6;
    font-size: 0.95rem;
}

.stats-section {
    padding: 80px 0;
    background: #05080a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.stat-card {
    padding: 20px;
}

.stat-number {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--cyan-glow);
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

.stat-plus {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-card p {
    color: #888;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-top: 10px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

.faq-section {
    padding: 100px 0;
    background: #05080a;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--cyan-glow);
    transition: 0.4s;
}

/* Answer Area */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 123, 255, 0.02);
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #888;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Active State Styles */
.faq-item.active {
    border-color: rgba(0, 210, 255, 0.3);
    background: rgba(0, 123, 255, 0.04);
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* ලොකු අගයක් දෙන්න */
    transition: max-height 0.6s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* + එක x එකක් වෙනවා */
    color: #ff4d4d;
}

/* Footer Variables */
:root {
    --footer-bg: #030507;
    --cyan-glow: #00d2ff;
    --primary-blue: #007bff;
    --text-gray: #888;
}

.main-footer {
    position: relative;
    background: var(--footer-bg);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    color: #fff;
}

/* Background Blue Glow */
.footer-glow {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    filter: blur(60px);
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Logo Design */
.footer-logo {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 900;
    display: block;
    margin-bottom: 20px;
}
.logo-accent { color: var(--primary-blue); }
.logo-white { color: #fff; font-weight: 300; margin-left: 4px; }

.footer-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 350px;
}

/* Social Icons (Original SVGs) */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(0, 123, 255, 0.1);
    color: var(--cyan-glow);
    border-color: var(--cyan-glow);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
}

/* Titles and Links */
.footer-title {
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--cyan-glow);
    border-radius: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Contact & Badge */
.contact-info {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.footer-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(0, 210, 255, 0.08);
    color: var(--cyan-glow);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

/* Footer Bottom with KTG DEV Glow */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.9rem;
}

.blue-glow-text {
    color: #fff;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.9); /* නියම Neon Glow එක */
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-desc { margin: 0 auto 25px; }
    .social-links { justify-content: center; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .footer-bottom { flex-direction: column; gap: 15px; }
}

/* Shared navbar compatibility */
.header{display:none;}

/* Home page polish */
.hero-section{padding-bottom:96px!important}
.hero-description{max-width:760px;margin:0 auto 52px;color:#a8b4c0;}
.services-row{margin-top:84px!important;gap:24px!important;align-items:stretch;}
.s-card{padding:24px 22px!important;border-radius:22px!important;gap:16px!important;}
.s-icon{width:54px!important;height:54px!important;border-radius:16px;background:rgba(255,255,255,.04);color:#7fdfff;flex:0 0 54px;}
.s-info p{color:#8fa0b1!important;}
.services-section,.why-choose-us,.faq-section{padding:84px 0!important;}
.section-header{margin-bottom:48px!important;}
.service-box,.feature-item,.faq-item{border-radius:24px!important;}
@media (max-width: 768px){
  .hero-title{font-size:3rem!important;letter-spacing:-1.5px!important}
  .hero-description br{display:none}
  .services-row{grid-template-columns:1fr!important;margin-top:50px!important}
  .services-section,.why-choose-us,.faq-section{padding:68px 0!important;}
}


/* === Final UI polish overrides === */
body{background:radial-gradient(circle at top, rgba(13,110,253,.12), transparent 28%), #05080a;color:#fff;}
.hero-section{min-height:calc(100vh - 24px);display:flex;align-items:center;padding-top:228px;padding-bottom:78px;}
.hero-wrapper{display:grid;gap:54px;align-items:end;}
.hero-content{max-width:860px;margin:0 auto;}
.hero-title{font-size:clamp(3rem,7vw,5.7rem);line-height:.95;letter-spacing:-.06em;margin-bottom:22px;}
.hero-description{max-width:760px;margin:0 auto 34px;color:#9fb0c0;font-size:1.08rem;}
.btn-whatsapp-premium{padding:18px 34px;font-size:1rem;border:1px solid rgba(255,255,255,.1);box-shadow:0 18px 36px rgba(0,86,179,.34);}
.services-row{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:26px;}
.s-card{padding:20px 18px;border-radius:24px;background:rgba(255,255,255,.03);backdrop-filter:blur(14px);min-height:112px;}
.s-icon{width:54px;height:54px;flex-shrink:0;border-radius:18px;background:rgba(13,110,253,.12);color:#7fdfff;}
.s-info h3{font-size:1rem;margin-bottom:6px;}
.s-info p{font-size:.9rem;color:#90a2b3;}
.services-section,.why-choose-us,.stats-section,.faq-section{padding:88px 0;}
.section-header{margin-bottom:44px;}
.section-title{font-size:clamp(2rem,4.4vw,3rem);letter-spacing:-.03em;}
.section-subtitle{max-width:700px;margin:0 auto;color:#90a2b3;}
.services-container,.stats-grid{width:min(1180px,92%);}
.service-box,.feature-item,.faq-item,.stat-card{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.07);box-shadow:0 18px 30px rgba(0,0,0,.16);}
.service-box{padding:34px 28px;border-radius:28px;}
.s-icon-wrapper{width:58px;height:58px;border-radius:18px;background:rgba(13,110,253,.1);color:#86e8ff;margin-bottom:20px;}
.service-box h3{font-size:1.18rem;}
.service-box p,.feature-item p,.faq-answer p,.stat-card p{color:#94a6b6;}
.features-wrapper{gap:24px;margin-top:42px;}
.feature-item{min-width:0;max-width:none;}
.f-icon{width:62px;height:62px;border-radius:18px;}
.stats-grid{gap:14px;}
.stat-card{padding:26px 18px;border-radius:24px;}
.stat-number{font-size:3rem;}
.faq-container{margin-top:34px;gap:12px;}
.faq-question{padding:22px 24px;}
.faq-answer p{padding:0 24px 22px;}
.main-footer{margin-top:0;}
@media (max-width:950px){.hero-section{min-height:auto;padding-top:190px;padding-bottom:56px;}.services-row{grid-template-columns:1fr;}.hero-description br,.hero-title br{display:none;}}
@media (max-width:640px){.hero-section{padding-top:158px;}.hero-title{font-size:2.65rem;}.hero-description{font-size:.98rem;}.btn-whatsapp-premium{width:100%;justify-content:center;}.services-section,.why-choose-us,.stats-section,.faq-section{padding:72px 0;}.s-card{padding:18px 16px;}.stats-grid{grid-template-columns:1fr 1fr;}}


/* === Requested spacing tweaks === */
.has-global-nav .hero-section{padding-top:190px!important;}
.hero-content{max-width:860px;margin:20px auto 0!important;}
.services-row,.features-wrapper{margin-top:52px!important;}
@media (max-width:950px){
  .has-global-nav .hero-section{padding-top:186px!important;}
  .hero-content{margin-top:20px!important;}
  .services-row,.features-wrapper{margin-top:50px!important;}
}
@media (max-width:640px){
  .has-global-nav .hero-section{padding-top:174px!important;}
  .services-row,.features-wrapper{margin-top:46px!important;}
}


/* === Home mobile fixes v1.2 === */
@media (max-width:680px){
  .hero-section{min-height:auto!important;padding-bottom:54px!important;}
  .hero-wrapper{gap:40px!important;width:min(100%,92%)!important;}
  .hero-content{margin-top:0!important;max-width:100%!important;}
  .hero-title{font-size:2.95rem!important;line-height:.93!important;letter-spacing:-.05em!important;margin-bottom:18px!important;}
  .hero-description{font-size:1rem!important;line-height:1.65!important;margin-bottom:28px!important;max-width:100%!important;padding:0 4px!important;}
  .btn-whatsapp-premium{width:100%!important;justify-content:center!important;padding:18px 20px!important;font-size:1rem!important;}
  .services-row{grid-template-columns:1fr!important;gap:14px!important;margin-top:26px!important;}
  .s-card{min-height:auto!important;padding:18px 16px!important;gap:14px!important;border-radius:22px!important;}
  .s-info h3{font-size:1.08rem!important;}
  .s-info p{font-size:.95rem!important;line-height:1.5!important;}
  .services-section,.why-choose-us,.stats-section,.faq-section{padding:64px 0!important;}
  .section-header{margin-bottom:32px!important;}
  .services-container{grid-template-columns:1fr!important;width:92%!important;gap:16px!important;}
  .service-box{padding:28px 22px!important;border-radius:24px!important;}
  .service-box h3{font-size:1.2rem!important;}
  .service-box p{font-size:.96rem!important;line-height:1.6!important;}
  .features-wrapper{display:grid!important;grid-template-columns:1fr!important;gap:16px!important;margin-top:28px!important;padding:0 14px!important;max-width:none!important;}
  .feature-item{width:100%!important;min-width:0!important;max-width:none!important;padding:28px 22px!important;border-radius:24px!important;}
  .feature-item h3{font-size:1.35rem!important;line-height:1.2!important;}
  .feature-item p{font-size:1rem!important;line-height:1.7!important;}
  .stats-grid{grid-template-columns:1fr 1fr!important;width:92%!important;gap:12px!important;}
  .stat-card{padding:22px 12px!important;}
  .faq-container{padding:0 14px!important;}
}


/* === Mobile polish v1.4 === */
.cta-label-mobile{display:none;}
@media (max-width:680px){
  .btn-whatsapp-premium{
    width:auto!important;
    min-width:0!important;
    justify-content:center!important;
    padding:14px 18px!important;
    font-size:.96rem!important;
    gap:10px!important;
    border-radius:999px!important;
    margin:0 auto!important;
    box-shadow:0 14px 28px rgba(0,86,179,.28)!important;
  }
  .btn-whatsapp-premium svg{width:18px!important;height:18px!important;flex:0 0 18px!important;}
  .cta-label-desktop{display:none!important;}
  .cta-label-mobile{display:inline!important;}
  .hero-cta-area{display:flex!important;justify-content:center!important;}

  .services-container{
    width:min(100%,92%)!important;
    gap:14px!important;
  }
  .service-box{
    text-align:center!important;
    align-items:center!important;
    padding:26px 20px!important;
  }
  .service-box .s-icon-wrapper{
    margin:0 auto 18px!important;
  }
  .service-box h3{
    text-align:center!important;
    margin-bottom:10px!important;
  }
  .service-box p{
    text-align:center!important;
    max-width:260px!important;
    margin:0 auto!important;
  }
}


/* === Filled icon polish v1.8 === */
.s-icon-wrapper{width:70px!important;height:70px!important;border-radius:22px!important;margin-bottom:22px!important;}
.f-icon{width:76px!important;height:76px!important;border-radius:24px!important;margin:0 auto 24px!important;background:linear-gradient(180deg,rgba(13,110,253,.18),rgba(0,210,255,.08))!important;border:1px solid rgba(0,210,255,.18)!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.04),0 14px 30px rgba(0,0,0,.2)!important;}
.f-icon svg{width:38px!important;height:38px!important;stroke-width:2.2!important;filter:drop-shadow(0 0 8px rgba(0,210,255,.18));}
@media (max-width:680px){
  .s-icon-wrapper{width:64px!important;height:64px!important;border-radius:20px!important;}
  .f-icon{width:68px!important;height:68px!important;border-radius:20px!important;}
  .f-icon svg{width:34px!important;height:34px!important;}
}

/* === Service icon premium modern update v1.9 === */
.service-box{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.service-box .s-icon-wrapper{
  width:60px!important;
  height:60px!important;
  margin:0 auto 22px!important;
  border-radius:20px!important;
  background:linear-gradient(180deg,rgba(7,25,48,.96),rgba(4,14,28,.92))!important;
  border:1px solid rgba(0,210,255,.55)!important;
  box-shadow:
    0 0 0 1px rgba(0,210,255,.10) inset,
    0 10px 24px rgba(0,0,0,.26),
    0 0 18px rgba(0,170,255,.18),
    0 0 34px rgba(0,170,255,.10)!important;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease!important;
}
.service-box .s-icon-wrapper svg{
  width:34px!important;
  height:34px!important;
  stroke-width:2.25!important;
  filter:drop-shadow(0 0 7px rgba(0,210,255,.18));
}
.service-box:hover .s-icon-wrapper{
  transform:scale(1.1)!important;
  border-color:rgba(80,225,255,.95)!important;
  box-shadow:
    0 0 0 1px rgba(110,235,255,.15) inset,
    0 14px 28px rgba(0,0,0,.32),
    0 0 24px rgba(0,210,255,.35),
    0 0 46px rgba(0,170,255,.18)!important;
}
.service-box h3,
.service-box p{
  text-align:center!important;
}
.service-box p{
  max-width:290px;
  margin:0 auto;
}
@media (max-width:680px){
  .service-box .s-icon-wrapper{
    width:60px!important;
    height:60px!important;
    margin:0 auto 18px!important;
  }
  .service-box .s-icon-wrapper svg{
    width:32px!important;
    height:32px!important;
  }
}


/* === SVG icon refinement v2.4 === */
.s-icon-wrapper svg,.addon-icon svg,.info-icon svg,.badge-icon svg,.f-icon svg{display:block;overflow:visible;filter:drop-shadow(0 0 10px rgba(0,210,255,.14));}
.s-icon-wrapper,.addon-icon,.info-icon,.badge-icon{padding:16px;}
.service-box .s-icon-wrapper svg{width:58%!important;height:58%!important;stroke-width:1.9;}
.addon-icon svg{width:56%!important;height:56%!important;stroke-width:1.9;}
.info-icon svg,.badge-icon svg{width:58%!important;height:58%!important;stroke-width:1.95;}
@media (max-width: 768px){
  .s-icon-wrapper,.addon-icon,.info-icon,.badge-icon{padding:14px;}
}


/* === Targeted icon size update v2.5 (Detailed Services only) === */
.services-section .service-box .s-icon-wrapper{
  width:70px!important;
  height:70px!important;
  padding:0!important;
  margin:0 auto 22px!important;
}
.services-section .service-box .s-icon-wrapper svg{
  width:43px!important;
  height:43px!important;
}
@media (max-width:680px){
  .services-section .service-box .s-icon-wrapper{
    width:70px!important;
    height:70px!important;
    padding:0!important;
  }
  .services-section .service-box .s-icon-wrapper svg{
    width:43px!important;
    height:43px!important;
  }
}
