:root{
  --ss-primary:#ffa200;
  --ss-primary-dark:#e19000;
  --ss-secondary:#033758;
  --ss-secondary-dark:#02263d;
  --ss-white:#ffffff;
  --ss-black:#101828;
  --ss-text:#0f172a;
  --ss-text-soft:#667085;
  --ss-border:#e6ebf1;
  --ss-bg:#f8fafc;
  --ss-shadow:0 20px 60px rgba(2, 38, 61, 0.12);
  --ss-radius:3px;
  --ss-container:1350px;
}

/* base */
html, body{
  overflow-x:hidden;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ss-text);
  background:#fff;
}

a{
  text-decoration:none;
}

.ss-fluid-shell{
  width:100%;
  padding-left:0;
  padding-right:0;
}

/* header */
.ss-header{
  position:relative;
  z-index:9999;
  width:100%;
  background:#fff;
  border-bottom:1px solid var(--ss-border);
}

.ss-header-desktop{
  width:100%;
  min-height:112px;
}

.ss-brand-block{
  width:236px;
  min-width:236px;
  background:#04224f;
  display:flex;
  align-items:center;
  justify-content:center;
  border-right:1px solid rgba(255,255,255,0.08);
}

.ss-brand-link{
  width:100%;
  min-height:112px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 24px;
}

.ss-brand-logo{
  max-width:175px;
  width:100%;
  height:auto;
  display:block;
}

.ss-header-right{
  flex:1 1 auto;
  min-width:0;
  background:#fff;
}

.ss-topbar{
  min-height:48px;
  border-bottom:1px solid var(--ss-border);
  background:#f9f9fa;
}

.ss-topbar-inner{
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 22px;
  gap:18px;
}

.ss-rating{
  display:flex;
  align-items:center;
  gap:12px;
}

.ss-rating-badge{
  width:24px;
  height:24px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--ss-primary), #ffd84b);
  color:#fff;
  font-size:12px;
}

.ss-rating-text{
  font-size:15px;
  color:var(--ss-text-soft);
  font-weight:500;
}

.ss-topbar-right{
  display:flex;
  align-items:center;
  gap:30px;
}

.ss-top-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--ss-text-soft);
  font-size:15px;
  transition:.25s ease;
}

.ss-top-link i{
  color:var(--ss-primary);
}

.ss-top-link:hover{
  color:var(--ss-secondary);
}

.ss-navbar-row{
  display:flex;
  min-height:64px;
}

.ss-navbar-main{
  flex:1 1 auto;
}

.ss-nav-desktop{
  width:100%;
}

.ss-nav-list{
  display:flex;
  align-items:stretch;
  list-style:none;
  margin:0;
  padding:0;
}

.ss-nav-item{
  position:relative;
  flex:1 1 0;
  border-left:1px solid var(--ss-border);
}

.ss-nav-item:last-child{
  border-right:1px solid var(--ss-border);
}

.ss-nav-link{
  min-height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  font-size:13px;
  font-weight:400;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color:#111827;
  transition:.25s ease;
  background:#fff;
}

.ss-nav-link:hover,
.ss-nav-link.active{
  color:var(--ss-secondary);
  background:#f7f9fc;
}

.ss-nav-link i{
  font-size:11px;
  transition:transform .25s ease;
}

.ss-header-cta{
  width:235px;
  min-width:235px;
  background:var(--ss-primary);
  border-left:1px solid rgba(0,0,0,0.05);
}

.ss-cta-box{
  min-height:64px;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding:14px 24px;
  color:#fff;
  transition:.25s ease;
}

.ss-cta-box strong{
  font-size:18px;
  line-height:1.1;
  font-weight:400;
}

.ss-cta-box span{
  font-size:12px;
  margin-top:4px;
  opacity:.95;
}

.ss-header-cta:hover .ss-cta-box{
  background:var(--ss-primary-dark);
}

/* desktop mega menu */
.ss-mega-menu{
  position:absolute;
  top:100%;
  left:0;
  width:1080px;
  max-width:min(1080px, calc(100vw - 280px));
  background:rgba(255,255,255,0.98);
  border:1px solid var(--ss-border);
  box-shadow:var(--ss-shadow);
  padding:28px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(10px);
  transition:all .25s ease;
}

.ss-has-mega:hover > .ss-mega-menu,
.ss-has-mega.active > .ss-mega-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}

.ss-has-mega:hover > .ss-nav-link i,
.ss-has-mega.active > .ss-nav-link i{
  transform:rotate(180deg);
}

/* viewport-safe positions */
.ss-has-mega.mega-right > .ss-mega-menu{
  left:auto;
  right:0;
}

.ss-has-mega.mega-center > .ss-mega-menu{
  left:50%;
  transform:translateX(-50%) translateY(10px);
}

.ss-has-mega.mega-center:hover > .ss-mega-menu,
.ss-has-mega.mega-center.active > .ss-mega-menu{
  transform:translateX(-50%) translateY(0);
}

.ss-mega-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px 22px;
}

.ss-mega-card{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:14px;
  border:1px solid transparent;
  background:#fff;
  transition:.25s ease;
}

.ss-mega-card:hover{
  background:#fff9f0;
  border-color:rgba(255,162,0,0.2);
}

.ss-mega-icon{
  width:34px;
  height:34px;
  min-width:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ss-primary);
  font-size:18px;
  margin-top:2px;
}

.ss-mega-content h6{
  margin:0 0 6px;
  font-size:19px;
  line-height:1.2;
  font-weight:500;
  color:#111827;
}

.ss-mega-content p{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:var(--ss-text-soft);
}

/* submenu */
.ss-submenu{
  list-style:none;
  margin:0;
  padding:8px 0;
  position:absolute;
  top:100%;
  left:0;
  min-width:230px;
  background:#fff;
  border:1px solid var(--ss-border);
  box-shadow:var(--ss-shadow);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(10px);
  transition:.25s ease;
}

.ss-has-submenu:hover > .ss-submenu,
.ss-has-submenu.active > .ss-submenu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}

.ss-has-submenu:hover > .ss-nav-link i,
.ss-has-submenu.active > .ss-nav-link i{
  transform:rotate(180deg);
}

.ss-submenu li a{
  display:block;
  padding:12px 16px;
  border-bottom:1px solid #f0f3f6;
  color:#111827;
  font-size:14px;
  transition:.25s ease;
}

.ss-submenu li:last-child a{
  border-bottom:none;
}

.ss-submenu li a:hover{
  background:#f8fafc;
  color:var(--ss-secondary);
}

/* mobile */
.ss-mobile-header{
  position:relative;
  z-index:9999;
  background:#fff;
  border-bottom:1px solid var(--ss-border);
}

.ss-mobile-top{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 16px;
}

.ss-mobile-logo img{
  max-width:150px;
  height:auto;
  display:block;
}

.ss-menu-toggle,
.ss-mobile-close{
  width:48px;
  height:48px;
  border:none;
  background:var(--ss-secondary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  cursor:pointer;
  border-radius:0;
}

.ss-menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:#fff;
  margin:3px 0;
  transition:.25s ease;
}

.ss-menu-toggle.active span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}
.ss-menu-toggle.active span:nth-child(2){
  opacity:0;
}
.ss-menu-toggle.active span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

.ss-mobile-overlay{
  position:fixed;
  inset:0;
  background:rgba(3, 55, 88, 0.35);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.25s ease;
  z-index:9997;
}

.ss-mobile-drawer{
  position:fixed;
  top:0;
  right:-100%;
  width:min(92vw, 420px);
  height:100vh;
  background:#fff;
  box-shadow:-20px 0 60px rgba(0,0,0,0.16);
  transition:right .3s ease;
  z-index:9998;
  overflow-y:auto;
}

.ss-mobile-drawer.open{
  right:0;
}

.ss-mobile-overlay.open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.ss-mobile-drawer-inner{
  min-height:100%;
  padding:18px 18px 28px;
}

.ss-mobile-drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-bottom:16px;
  border-bottom:1px solid var(--ss-border);
  margin-bottom:14px;
}

.ss-mobile-logo-drawer img{
  max-width:150px;
}

.ss-mobile-nav-list{
  list-style:none;
  margin:0;
  padding:0;
}

.ss-mobile-nav-list > li{
  border-bottom:1px solid var(--ss-border);
}

.ss-mobile-nav-list > li > a,
.ss-mobile-sub-trigger{
  width:100%;
  min-height:60px;
  padding:16px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background:none;
  border:none;
  color:#071c36;
  font-size:16px;
  font-weight:500;
  text-align:left;
}

.ss-mobile-nav-list > li > a.active{
  color:var(--ss-secondary);
}

.ss-mobile-sub-trigger i{
  font-size:14px;
  transition:transform .25s ease;
}

.ss-mobile-has-sub.active .ss-mobile-sub-trigger i{
  transform:rotate(180deg);
}

.ss-mobile-submenu{
  display:none;
  padding:0 0 14px 0;
}

.ss-mobile-has-sub.active .ss-mobile-submenu{
  display:block;
}

.ss-mobile-submenu a{
  display:block;
  padding:10px 0 10px 14px;
  color:var(--ss-text-soft);
  font-size:14px;
  border-left:2px solid #eef2f6;
}

.ss-mobile-submenu a:hover{
  color:var(--ss-secondary);
  border-left-color:var(--ss-primary);
}

.ss-mobile-contact{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding-top:20px;
}

.ss-mobile-contact a{
  color:var(--ss-text-soft);
  font-size:15px;
}

.ss-mobile-contact i{
  color:var(--ss-primary);
  margin-right:10px;
}

.ss-mobile-cta{
  display:block;
  margin-top:22px;
  background:var(--ss-primary);
  color:#fff;
  text-align:center;
  font-size:18px;
  font-weight:800;
  padding:16px 18px;
}

body.ss-menu-open{
  overflow:hidden;
}

/* responsive */
@media (max-width: 1399.98px){
  .ss-mega-menu{
    width:980px;
    max-width:min(980px, calc(100vw - 260px));
  }
}

@media (max-width: 1199.98px){
  .ss-brand-block{
    width:210px;
    min-width:210px;
  }

  .ss-header-cta{
    width:210px;
    min-width:210px;
  }

  .ss-nav-link{
    letter-spacing:1.2px;
    font-size:12px;
    padding:12px 14px;
  }

  .ss-mega-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

/* =========================
   HERO SLIDER REFINED
========================= */
.ss-container{
  width:100%;
  max-width:1350px;
  margin:0 auto;
  padding-left:20px;
  padding-right:20px;
  box-sizing:border-box;
}

.ss-hero-slider{
  position:relative;
  width:100%;
  overflow:hidden;
  background:#000;
}

.ss-hero-slider-wrap{
  position:relative;
  width:100%;
  min-height:720px;
}

.ss-hero-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .7s ease, visibility .7s ease;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.ss-hero-slide.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  z-index:2;
}

.ss-hero-slide-video .ss-hero-video-media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  overflow:hidden;
}

.ss-hero-slide-video .ss-hero-video-media video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ss-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.48) 40%, rgba(0,0,0,.18) 100%);
  z-index:1;
}

.ss-hero-content-wrap{
  position:relative;
  z-index:3;
  min-height:720px;
  display:flex;
  align-items:center;
}

.ss-hero-inner{
  max-width:760px;
  color:#fff;
  padding-top:70px;
  padding-bottom:70px;
}

.ss-hero-eyebrow{
  display:inline-block;
  margin-bottom:18px;
  font-size:14px;
  line-height:1;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#f4c542;
}

.ss-hero-inner h1,
.ss-hero-inner h2{
  margin:0 0 20px;
  font-size:60px;
  line-height:1.08;
  font-weight:700;
  color:#fff;
}

.ss-hero-inner p{
  margin:0;
  max-width:640px;
  font-size:18px;
  line-height:1.75;
  color:rgba(255,255,255,.92);
}

.ss-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.ss-btn-primary,
.ss-btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:4px;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  transition:all .3s ease;
}

.ss-btn-primary{
  background:#f4c542;
  color:#111;
  border:1px solid #f4c542;
}

.ss-btn-outline{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.45);
}

.ss-btn-primary:hover{
  background:#fff;
  border-color:#fff;
  color:#111;
}

.ss-btn-outline:hover{
  background:#fff;
  border-color:#fff;
  color:#111;
}

.ss-hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:54px;
  height:54px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  backdrop-filter:blur(8px);
  transition:all .3s ease;
}

.ss-hero-prev{ left:24px; }
.ss-hero-next{ right:24px; }

.ss-hero-arrow:hover{
  background:#f4c542;
  color:#111;
}

.ss-hero-tabs-section{
  position:relative;
  background:#fff;
   padding:0;
  z-index:20;
}

.ss-hero-navcards{
  width:100%;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:0px;
}

.ss-hero-navcard{
  appearance:none;
  -webkit-appearance:none;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  text-align:left;
  padding:22px 20px;
 cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:all .3s ease;
  min-height:92px;
}

.ss-hero-navcard strong{
  display:block;
  font-size:17px;
  line-height:1.3;
  font-weight:700;
  color:#111;
  margin-bottom:6px;
}

.ss-hero-navcard span{
  display:block;
  font-size:14px;
  line-height:1.6;
  color:#666;
}

.ss-hero-navcard:hover,
.ss-hero-navcard.active{
   border-color:#f4c542;
  box-shadow:0 16px 35px rgba(0,0,0,.12);
  background:#f4c542;
}

@media (max-width:1199px){
  .ss-hero-inner h1,
  .ss-hero-inner h2{
    font-size:48px;
  }

  .ss-hero-navcards{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:767px){
  .ss-hero-slider-wrap,
  .ss-hero-content-wrap{
    min-height:520px;
  }

  .ss-hero-inner h1,
  .ss-hero-inner h2{
    font-size:32px;
  }

  .ss-hero-navcards{
    grid-template-columns:1fr;
  }
}


/* =========================
   HERO FORM LAYOUT
========================= */

/* =========================
   HERO FORM LAYOUT
========================= */

.ss-hero-layout{
  width:100%;
  display:grid;
  grid-template-columns:minmax(0, 1fr) 360px;
  gap:40px;
  align-items:center;
}

.ss-hero-quote-card{
  position:relative;
  z-index:5;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(10px);
  border:1px solid rgba(0,0,0,0.08);
  border-radius:5px;
  padding:18px;
  box-shadow:0 18px 45px rgba(0,0,0,0.18);
  color:#111827;
  max-width:360px;
}

.ss-hero-quote-card h3{
  margin:0 0 4px;
  font-size:22px;
  line-height:1.15;
  font-weight:800;
  color:#033758;
}

.ss-hero-quote-sub{
  margin:0 0 14px;
  font-size:12px;
  color:#667085;
}

.ss-hero-form{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.ss-form-group label{
  display:block;
  margin-bottom:5px;
  font-size:12px;
  font-weight:700;
  color:#344054;
}

.ss-form-group label span{
  color:#ef4444;
}

.ss-form-group input,
.ss-form-group select{
  width:100%;
  height:40px;
  border:1px solid #d9e2ec;
  border-radius:5px;
  padding:0 12px;
  background:#fff;
  color:#111827;
  font-size:13px;
  outline:none;
  transition:.25s ease;
}

.ss-form-group input:focus,
.ss-form-group select:focus{
  border-color:#ffa200;
  box-shadow:0 0 0 3px rgba(255,162,0,0.14);
}

.ss-phone-row{
  display:grid;
  grid-template-columns:86px 1fr;
  gap:7px;
}

.ss-country-code{
  height:40px;
  border:1px solid #d9e2ec;
  border-radius:5px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f8fafc;
  font-size:12px;
  color:#111827;
  font-weight:700;
}

.ss-install-options{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:7px;
}

.ss-install-options label{
  margin:0;
  cursor:pointer;
}

.ss-install-options input{
  display:none;
}

.ss-install-options span{
  min-height:36px;
  border:1px solid #d9e2ec;
  border-radius:5px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  font-size:12px;
  font-weight:700;
  color:#344054;
  transition:.25s ease;
}

.ss-install-options input:checked + span{
  background:#fff7e6;
  border-color:#ffa200;
  color:#033758;
  box-shadow:0 0 0 2px rgba(255,162,0,0.10);
}

.ss-quote-submit{
  width:100%;
  min-height:44px;
  border:none;
  border-radius:5px;
  background:linear-gradient(135deg, #ffa200, #ffd84b);
  color:#111827;
  font-size:13px;
  font-weight:900;
  cursor:pointer;
  transition:.25s ease;
}

.ss-quote-submit:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(255,162,0,0.25);
}

.ss-form-safe{
  margin:0;
  text-align:center;
  font-size:10px;
  color:#667085;
}

@media (max-width:1199px){
  .ss-hero-layout{
    grid-template-columns:1fr 340px;
    gap:32px;
  }
}

@media (max-width:991px){
  .ss-hero-layout{
    grid-template-columns:1fr;
    gap:28px;
    padding-top:40px;
    padding-bottom:40px;
  }

  .ss-hero-content-wrap{
    align-items:flex-start;
  }

  .ss-hero-inner{
    max-width:100%;
    padding-top:30px;
    padding-bottom:0;
  }

  .ss-hero-quote-card{
    max-width:420px;
    width:100%;
  }

  .ss-hero-slider-wrap,
  .ss-hero-content-wrap{
    min-height:auto;
  }

  .ss-hero-slide{
    position:absolute;
  }

  .ss-hero-slide.active{
    position:relative;
  }
}

@media (max-width:575px){
  .ss-hero-quote-card{
    padding:16px;
    border-radius:5px;
  }

  .ss-hero-quote-card h3{
    font-size:21px;
  }

  .ss-phone-row{
    grid-template-columns:1fr;
  }

  .ss-install-options{
    grid-template-columns:1fr;
  }
}

/* =========================
   GLOBAL CONTAINER
========================= */
.ss-container{
  width:100%;
  max-width:1350px;
  margin:0 auto;
  padding-left:20px;
  padding-right:20px;
  box-sizing:border-box;
}





/* =========================
   SHYAM SOLAR ABOUT FEATURE
========================= */
.ss-about-feature{
  position:relative;
  padding:110px 0 90px;
  background:#ffffff;
  overflow:hidden;
}

.ss-about-feature .ss-container{
  position:relative;
  z-index:2;
}

.ss-about-feature__top{
  max-width:720px;
  margin-bottom:6px;
}

.ss-about-feature__eyebrow{
  display:inline-block;
  margin-bottom:16px;
  font-size:15px;
  line-height:1.4;
  font-weight:700;
  color:#2f8f2f;
}

.ss-about-feature__top h2{
  margin:0;
  font-size:56px;
  line-height:1.08;
  font-weight:300;
  letter-spacing:-0.02em;
  color:#111111;
  max-width:760px;
}

.ss-about-feature__grid{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:90px;
  align-items:center;
  position:relative;
}

/* =========================
   LEFT VISUAL
========================= */
.ss-about-feature__visual{
  position:relative;
  min-height:640px;
}

.ss-about-feature__main-image{
  position:relative;
  width:72%;
  max-width:430px;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.ss-about-feature__main-image img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}

.ss-about-feature__small-image{
  position:absolute;
  left:230px;
  bottom:-28px;
  width:46%;
  max-width:280px;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,0.10);
  border:6px solid #f7f8f5;
}

.ss-about-feature__small-image img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}

.ss-about-feature__stat-card{
  position:absolute;
  top:50%;
  right:18px;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
  min-width:170px;
}

.ss-about-feature__stat-line{
  display:block;
  width:34px;
  height:1px;
  background:rgba(0,0,0,0.22);
}

.ss-about-feature__stat-number{
  font-size:62px;
  line-height:1;
  font-weight:400;
  color:#3e9d23;
  letter-spacing:-0.04em;
}

.ss-about-feature__stat-text{
  font-size:16px;
  line-height:1.55;
  color:#111111;
  max-width:150px;
}

/* =========================
   RIGHT CONTENT
========================= */
.ss-about-feature__content{
  max-width:590px;
}

.ss-about-feature__icon{
  width:72px;
  height:72px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#42ad38;
  margin-bottom:20px;
}

.ss-about-feature__content h3{
  margin:0 0 22px;
  font-size:34px;
  line-height:1.25;
  font-weight:700;
  color:#111111;
  max-width:560px;
}

.ss-about-feature__content p{
  margin:0 0 22px;
  font-size:18px;
  line-height:1.9;
  color:#6c7785;
}

.ss-about-feature__content p strong{
  color:#4c5560;
  font-weight:700;
}

.ss-about-feature__list{
  margin:0 0 34px;
  padding-left:22px;
}

.ss-about-feature__list li{
  margin-bottom:12px;
  font-size:18px;
  line-height:1.75;
  color:#6c7785;
}

.ss-about-feature__list li:last-child{
  margin-bottom:0;
}

.ss-about-feature__btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:54px;
  padding:0 30px;
  border-radius:999px;
  background:#119328;
  color:#ffffff;
  text-decoration:none;
  font-size:16px;
  font-weight:700;
  transition:all 0.3s ease;
  box-shadow:0 12px 24px rgba(17,147,40,0.18);
}

.ss-about-feature__btn:hover{
  background:#0d7a20;
  transform:translateY(-2px);
}

.ss-about-feature__btn span{
  font-size:18px;
  line-height:1;
}

/* =========================
   DECORATIVE SHAPE
========================= */
.ss-about-feature__shape{
  position:absolute;
  top:20px;
  right:90px;
  width:180px;
  height:180px;
  opacity:0.25;
  z-index:1;
  pointer-events:none;
}

.ss-about-feature__shape span{
  position:absolute;
  display:block;
  background:#6dbb57;
}

.ss-about-feature__shape span:first-child{
  top:0;
  right:38px;
  width:62px;
  height:98px;
  clip-path:polygon(50% 0, 100% 32%, 72% 32%, 72% 100%, 28% 100%, 28% 32%, 0 32%);
}

.ss-about-feature__shape span:last-child{
  top:34px;
  right:0;
  width:84px;
  height:122px;
  clip-path:polygon(50% 0, 100% 36%, 72% 36%, 72% 100%, 28% 100%, 28% 36%, 0 36%);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1399px){
  .ss-about-feature__top h2{
    font-size:50px;
  }

  .ss-about-feature__grid{
    gap:70px;
  }
}

@media (max-width: 1199px){
  .ss-about-feature{
    padding:90px 0 80px;
  }

  .ss-about-feature__top h2{
    font-size:42px;
  }

  .ss-about-feature__grid{
    grid-template-columns:1fr;
    gap:60px;
  }

  .ss-about-feature__visual{
    min-height:600px;
  }

  .ss-about-feature__content{
    max-width:100%;
  }

  .ss-about-feature__shape{
    width:130px;
    height:130px;
    right:40px;
  }
}

@media (max-width: 991px){
  .ss-about-feature{
    padding:80px 0 70px;
  }

  .ss-about-feature__top{
    margin-bottom:42px;
  }

  .ss-about-feature__top h2{
    font-size:36px;
    line-height:1.15;
  }

  .ss-about-feature__visual{
    min-height:560px;
  }

  .ss-about-feature__main-image{
    width:75%;
  }

  .ss-about-feature__main-image img{
    height:460px;
  }

  .ss-about-feature__small-image{
    left:180px;
    width:42%;
  }

  .ss-about-feature__stat-card{
    right:0;
  }

  .ss-about-feature__content h3{
    font-size:30px;
  }

  .ss-about-feature__content p,
  .ss-about-feature__list li{
    font-size:17px;
  }
}

@media (max-width: 767px){
  .ss-container{
    padding-left:16px;
    padding-right:16px;
  }

  .ss-about-feature{
    padding:65px 0 60px;
  }

  .ss-about-feature__top h2{
    font-size:30px;
  }

  .ss-about-feature__visual{
    min-height:auto;
    display:flex;
    flex-direction:column;
    gap:18px;
  }

  .ss-about-feature__main-image{
    width:100%;
    max-width:100%;
  }

  .ss-about-feature__main-image img{
    height:360px;
  }

  .ss-about-feature__stat-card{
    position:relative;
    top:auto;
    right:auto;
    transform:none;
    min-width:unset;
    gap:10px;
    padding-left:2px;
  }

  .ss-about-feature__small-image{
    position:relative;
    left:auto;
    bottom:auto;
    width:72%;
    max-width:260px;
    border-width:4px;
  }

  .ss-about-feature__small-image img{
    height:170px;
  }

  .ss-about-feature__content h3{
    font-size:26px;
  }

  .ss-about-feature__content p,
  .ss-about-feature__list li{
    font-size:16px;
    line-height:1.75;
  }

  .ss-about-feature__btn{
    min-height:50px;
    padding:0 24px;
    font-size:15px;
  }

  .ss-about-feature__shape{
    display:none;
  }
}


/*Feature sections */
/* =========================
   CONTAINER
========================= */
.ss-container{
  width:100%;
  max-width:1350px;
  margin:0 auto;
  padding-left:20px;
  padding-right:20px;
  box-sizing:border-box;
}

/* =========================
   SOLUTIONS SECTION
========================= */
.ss-solutions-section{
  position:relative;
  background:#02304c;
  padding:92px 0 96px;
  overflow:hidden;
}

.ss-solutions-head{
  margin-bottom:42px;
}

.ss-solutions-head h2{
  margin:0;
  color:#ffffff;
  font-size:58px;
  line-height:1.05;
  letter-spacing:-0.03em;
  font-weight:500;
}

.ss-solutions-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
}

/* =========================
   CARD
========================= */
.ss-solution-card{
  position:relative;
  display:block;
  min-height:680px;
  overflow:hidden;
  border-radius:2px;
  text-decoration:none;
  background:#0b1d5f;
  color:#ffffff;
  isolation:isolate;
  transition:transform .45s ease, box-shadow .45s ease;
}

.ss-solution-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 60px rgba(0,0,0,0.22);
}

.ss-solution-card__bg{
  position:absolute;
  inset:0;
  z-index:1;
}

.ss-solution-card__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 1s ease;
}

.ss-solution-card:hover .ss-solution-card__bg img{
  transform:scale(1.06);
}

.ss-solution-card__overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.10) 18%,
      rgba(0,0,0,0.00) 38%,
      rgba(0,0,0,0.18) 68%,
      rgba(0,0,0,0.58) 100%
    );
  transition:opacity .4s ease, background .4s ease;
}

.ss-solution-card:hover .ss-solution-card__overlay{
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.05) 18%,
      rgba(0,0,0,0.00) 35%,
      rgba(0,0,0,0.22) 66%,
      rgba(0,0,0,0.68) 100%
    );
}

.ss-solution-card__content{
  position:relative;
  z-index:3;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:680px;
  padding:28px 28px 26px;
}

.ss-solution-card__number{
  display:block;
  color:rgba(255,255,255,0.72);
  font-size:18px;
  line-height:1;
  font-weight:500;
  letter-spacing:.02em;
  margin-bottom:14px;
}

.ss-solution-card h3{
  margin:0;
  max-width:82%;
  color:#ffffff;
  font-size:31px;
  line-height:1.08;
  letter-spacing:-0.02em;
  font-weight:500;
}

.ss-solution-card__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:142px;
  min-height:46px;
  padding:0 18px;
  border:1px solid rgba(255,255,255,0.34);
  background:rgba(255,255,255,0.10);
  color:#ffffff;
  font-size:15px;
  line-height:1;
  font-weight:500;
  border-radius:2px;
  backdrop-filter:blur(6px);
  transition:all .35s ease;
}

.ss-solution-card:hover .ss-solution-card__btn{
  background:#ffe200;
  color:#001a70;
  border-color:#ffffff;
}

.ss-solution-card__btn span{
  display:inline-block;
  transform:translateY(0);
  transition:transform .35s ease;
}

.ss-solution-card:hover .ss-solution-card__btn span{
  transform:translateY(-1px);
}

/* =========================
   GSAP PRESTATE
========================= */
.ss-solutions-reveal-up{
  opacity:0;
  transform:translateY(38px);
  will-change:transform, opacity;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1399px){
  .ss-solutions-head h2{
    font-size:52px;
  }

  .ss-solution-card{
    min-height:640px;
  }

  .ss-solution-card__content{
    min-height:640px;
  }
}

@media (max-width: 1199px){
  .ss-solutions-section{
    padding:82px 0 86px;
  }

  .ss-solutions-head h2{
    font-size:44px;
  }

  .ss-solutions-grid{
    gap:20px;
  }

  .ss-solution-card{
    min-height:580px;
  }

  .ss-solution-card__content{
    min-height:580px;
    padding:24px 22px 22px;
  }

  .ss-solution-card h3{
    font-size:27px;
    max-width:90%;
  }
}

@media (max-width: 991px){
  .ss-solutions-grid{
    grid-template-columns:1fr;
  }

  .ss-solution-card{
    min-height:560px;
  }

  .ss-solution-card__content{
    min-height:560px;
  }
}

@media (max-width: 767px){
  .ss-container{
    padding-left:16px;
    padding-right:16px;
  }

  .ss-solutions-section{
    padding:64px 0 68px;
  }

  .ss-solutions-head{
    margin-bottom:28px;
  }

  .ss-solutions-head h2{
    font-size:34px;
    line-height:1.08;
  }

  .ss-solution-card{
    min-height:500px;
  }

  .ss-solution-card__content{
    min-height:500px;
    padding:20px 18px 18px;
  }

  .ss-solution-card__number{
    font-size:16px;
  }

  .ss-solution-card h3{
    font-size:24px;
    max-width:100%;
  }

  .ss-solution-card__btn{
    min-width:130px;
    min-height:42px;
    font-size:14px;
  }
}

/* =========================
   ABOUT INTRO SECTION
========================= */

.ss-intro-section{
  position:relative;
  padding:90px 0 80px;
  background:#ffffff;
  overflow:hidden;
}

.ss-intro-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:90px;
  align-items:center;
}

/* LEFT */
.ss-intro-visual{
  position:relative;
  text-align:center;
}

.ss-orbit-wrap{
  position:relative;
  width:420px;
  height:420px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

.ss-orbit-ring{
  position:absolute;
  inset:0;
  border:1px dashed rgba(255,162,0,0.45);
  border-radius:50%;
  animation:ssOrbitRotate 18s linear infinite;
}

.ss-orbit-ring::before,
.ss-orbit-ring::after{
  content:"";
  position:absolute;
  width:12px;
  height:1px;
  background:rgba(255,162,0,0.45);
}

.ss-orbit-ring::before{
  top:0;
  left:50%;
}

.ss-orbit-ring::after{
  bottom:0;
  right:50%;
}

.ss-orbit-dot{
  position:absolute;
  width:10px;
  height:10px;
  background:#ffa200;
  border-radius:50%;
  box-shadow:0 0 0 6px rgba(255,162,0,0.15);
}

.ss-orbit-dot.dot-1{
  left:-5px;
  top:50%;
}

.ss-orbit-dot.dot-2{
  right:45px;
  top:65px;
}

.ss-orbit-dot.dot-3{
  bottom:4px;
  left:50%;
}

.ss-intro-image{
  position:relative;
  width:315px;
  height:315px;
  border-radius:50%;
  overflow:hidden;
  border:4px solid #a06f00;
  box-shadow:0 20px 45px rgba(3,55,88,0.16);
  z-index:2;
}

.ss-intro-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ss-image-label{
  position:absolute;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  white-space:nowrap;
  text-shadow:0 2px 8px rgba(0,0,0,0.7);
}

.ss-intro-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin:18px 0 22px;
}

.ss-intro-dots span{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#cfcfcf;
}

.ss-intro-dots span.active{
  background:#ffa200;
}

.ss-intro-badges{
  max-width:340px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}

.ss-intro-badge{
  min-height:78px;
  border:1px solid rgba(255,162,0,0.32);
  border-radius:5px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:#fff;
  transition:.25s ease;
}

.ss-intro-badge:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(3,55,88,0.08);
}

.ss-intro-badge .icon{
  font-size:20px;
  line-height:1;
  margin-bottom:6px;
}

.ss-intro-badge strong{
  font-size:12px;
  color:#111827;
  line-height:1.2;
}

.ss-intro-badge small{
  margin-top:3px;
  font-size:10px;
  color:#c2c2c2;
}

/* RIGHT */
.ss-intro-content{
  max-width:720px;
}

.ss-intro-eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 18px;
  border-radius:999px;
  background:#fff4df;
  color:#9b6400;
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:20px;
}

.ss-intro-eyebrow::before{
  content:"+";
  margin-right:6px;
  color:#ffa200;
}

.ss-intro-content h2{
  margin:0 0 20px;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-0.03em;
  color:#050505;
  font-weight:800;
}

.ss-intro-content h2 span{
  color:#ffa200;
}

.ss-intro-content p{
  margin:0 0 24px;
  font-size:15px;
  line-height:1.9;
  color:#374151;
}

.ss-intro-content p strong{
  color:#111827;
}

.ss-intro-list{
  list-style:none;
  margin:0 0 24px;
  padding:0;
}

.ss-intro-list li{
  position:relative;
  padding-left:30px;
  margin-bottom:12px;
  font-size:14px;
  color:#374151;
  line-height:1.5;
}

.ss-intro-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#fff3d2;
  color:#d48a00;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:900;
}

.ss-progress-wrap{
  margin:25px 0 26px;
}

.ss-progress{
  margin-bottom:14px;
}

.ss-progress-label{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:13px;
  font-weight:700;
  color:#111827;
  margin-bottom:7px;
}

.ss-progress-label span{
  color:#ffa200;
}

.ss-progress-bar{
  width:100%;
  height:5px;
  background:#f1f1f1;
  border-radius:5px;
  overflow:hidden;
}

.ss-progress-bar div{
  width:0;
  height:100%;
  background:linear-gradient(90deg,#ffa200,#ffd84b);
  border-radius:5px;
}

.ss-intro-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.ss-btn-outline-dark,
.ss-btn-solid-yellow{
  min-height:44px;
  padding:0 24px;
  border-radius:5px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  text-transform:uppercase;
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
  transition:.25s ease;
}

.ss-btn-outline-dark{
  border:1px solid #ffa200;
  color:#111827;
  background:#fff;
}

.ss-btn-solid-yellow{
  border:1px solid #ffa200;
  background:#ffa200;
  color:#111827;
}

.ss-btn-outline-dark:hover,
.ss-btn-solid-yellow:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(255,162,0,0.22);
}

.ss-intro-reveal{
  opacity:0;
  transform:translateY(35px);
}

@keyframes ssOrbitRotate{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

/* RESPONSIVE */
@media(max-width:1199px){
  .ss-intro-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .ss-intro-content{
    max-width:100%;
  }

  .ss-intro-content h2{
    font-size:38px;
  }
}

@media(max-width:575px){
  .ss-intro-section{
    padding:60px 0;
  }

  .ss-orbit-wrap{
    width:300px;
    height:300px;
  }

  .ss-intro-image{
    width:230px;
    height:230px;
  }

  .ss-intro-badges{
    grid-template-columns:1fr;
  }

  .ss-intro-content h2{
    font-size:30px;
  }

  .ss-intro-actions{
    flex-direction:column;
  }
}