/*====================================================
JAMIYA POWER SOLUTIONS
STYLE SHEET
====================================================*/

/*=========================================
GOOGLE FONT
=========================================*/

:root{

    --primary:#1E2444;

    --secondary:#58608A;

    --accent:#F1B030;

    --dark:#151B2D;

    --white:#FFFFFF;

    --light:#F8F9FC;

    --light2:#EEF2F8;

    --text:#5B657D;

    --heading:#1E2444;

    --border:#E7ECF4;

    --shadow:0 20px 45px rgba(17,24,39,.08);

    --shadow-hover:0 30px 60px rgba(17,24,39,.15);

    --radius:18px;

}

/*=========================================
RESET
=========================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--text);

    background:#fff;

    overflow-x:hidden;

    line-height:1.7;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:.35s;

}

ul{

    list-style:none;

    padding:0;

    margin:0;

}

/*=========================================
COMMON
=========================================*/

section{

    padding:100px 0;

}

.section-tag{

    display:block;

    color:var(--accent);

    font-size:18px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-title{

    color:var(--heading);

    font-size:48px;

    font-weight:800;

    margin-bottom:20px;

    line-height:1.2;

}

.section-subtitle{

    max-width:700px;

    margin:auto;

    color:var(--text);

    font-size:18px;

}

/*=========================================
NAVBAR
=========================================*/

.navbar{

    padding:18px 0;

    transition:.4s;

    background:rgba(30,36,68,.94);

    backdrop-filter:blur(10px);

}

.navbar.scrolled{

    padding:12px 0;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.logo{

    width:48px;

    height:48px;

    object-fit:contain;

}

.brand-text h3{

    margin:0;

    color:#fff;

    font-size:22px;

    font-weight:700;

    line-height:1;

}

.brand-text span{

    color:#F1B030;

    font-size:12px;

    letter-spacing:2px;

    font-weight:600;

}

.nav-link{

    color:#fff !important;

    margin-left:25px;

    font-weight:500;

    position:relative;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.35s;

}

.nav-link:hover::after,

.nav-link.active::after{

    width:100%;

}

.navbar-toggler{

    border:none;

    box-shadow:none!important;

}

/*=========================================
BUTTONS
=========================================*/

.btn{

    border-radius:50px;

    padding:15px 35px;

    font-weight:600;

    transition:.35s;

}

.btn-gold{

    background:var(--accent);

    color:#1E2444;

    border:none;

}

.btn-gold:hover{

    background:#d89a18;

    color:#fff;

    transform:translateY(-3px);

}

.btn-outline-light{

    border:2px solid #fff;

}

.btn-outline-light:hover{

    background:#fff;

    color:var(--primary);

}

/*=========================================
HERO
=========================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:

    linear-gradient(rgba(30,36,68,.82),

    rgba(30,36,68,.82)),

    url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

    color:#fff;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

    120deg,

    rgba(255,255,255,.03),

    transparent);

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-tag{

    display:inline-block;

    padding:10px 18px;

    color: var(--accent);

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.2);

    border-radius:40px;

    margin-bottom:25px;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

}

.hero h1{

    font-size:64px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:30px;

}

.hero p{

    font-size:16px;

    color:#d7dceb;

    max-width:650px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/*=========================================
GLASS CARD
=========================================*/

.glass-card{

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(15px);

    border-radius:25px;

    padding:40px;

    color:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

    margin-top: 50px;
}

.glass-card-experience{

    text-align:center;

    margin-bottom:25px;

}

.glass-card-experience h2{

    font-size:72px;

    color:var(--accent);

    font-weight:800;

    margin-bottom:5px;

}

.glass-card-experience span{

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:13px;

}

.feature{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:20px;

    font-size:16px;

}

.feature i{

    color:var(--accent);

    font-size:22px;

}


/* TOP INFO BAR */

.top-info-bar {
    background: #fff;

    padding: 60px 0;

    text-align: center;
}

.top-info-bar .container {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.info-item {
    flex: 0 1 300px;
}

.info-item .label {
    display: block;
    font-size: 18px;
    color: #fbbf24;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-item .value{
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.info-item .value a {
  color: #333;
  text-decoration: none;
}
.info-item .value a:hover {
  color: #fbbf24;
}


/*=========================================
ABOUT SECTION
=========================================*/

#about{

    background:var(--light);

    padding-top: 40px;

    padding-bottom: 100px;
}

.about-row{
    min-height: 520px;
}

.about-img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:22px;

}

#about.col-lg-6:last-child {
    padding-left: 40px;
}



#about .lead{

    font-size:20px;

    color:var(--heading);

    font-weight:500;

    margin-bottom:25px;

}

.about-box{

    display:flex;

    align-items:flex-start;

    gap:18px;

    background:#fff;

    padding:25px;

    margin-bottom:25px;

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.about-box:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);

}

.about-box i{

    width:65px;

    height:65px;

    min-width:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--accent);

    color:var(--primary);

    border-radius:18px;

    font-size:28px;

}

.about-box h5{

    color:var(--heading);

    font-size:20px;

    margin-bottom:10px;

    font-weight:700;

}

.about-box p{

    margin:0;

    color:var(--text);

    font-size:15px;

    line-height:1.7;

}

/*=========================================
WHY CHOOSE US
=========================================*/

.why-section{

    background:linear-gradient(135deg,#58608A,#434B71);

    color:#fff;

   padding-bottom: 60px;

}


.why-section .section-title{

    color:#fff;

}

.why-section .section-subtitle{

    color:#e8ecf5;

}

.feature-card{

    background:#fff;

    color:var(--text);

    padding:45px 30px;

    border-radius:22px;

    text-align:center;

    height:100%;

    transition:.4s;

    box-shadow:var(--shadow);

    position:relative;

    overflow:hidden;

}

.feature-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:var(--accent);

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.feature-card:hover::before{

    transform:scaleX(1);

}

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-hover);

}

.icon-circle{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:30px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(241,176,48,.12);

    transition:.35s;

}

.icon-circle i{

    font-size:38px;

    color:var(--accent);

    transition:.35s;

}

.feature-card:hover .icon-circle{

    background:var(--accent);

}

.feature-card:hover .icon-circle i{

    color:var(--primary);

}

.feature-card h4{

    color:var(--heading);

    font-size:28px;

    font-weight:700;

    margin-bottom:18px;

}

.feature-card p{

    color:var(--text);

    margin:0;

    line-height:1.8;

    font-size:17px;

}

/*=========================================
SECTION SPACING
=========================================*/

#about .row{

    row-gap:40px;

}

.why-section .row{

    margin-top:50px;

}

.section-title{

    position:relative;


    display:block;

    padding-bottom:15px;

}

.section-title::after{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:0;

    width:80px;

    height:4px;

    border-radius:5px;

    background:var(--accent);

}

#about .section-title::after{

    left:0;

    transform:none;

}

/*=========================================
ANIMATIONS
=========================================*/

.feature-card,
.about-box{

    will-change:transform;

}

.feature-card:hover{

    transition:all .35s ease;

}

.about-box:hover{

    transition:all .35s ease;

}

/*==================================================
PRODUCT SECTION
==================================================*/

#products{

    background:linear-gradient(rgba(255, 255, 255, 0.92)),
               url("../images/showroom_old.png");

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    background-repeat: no-repeat;

    padding-top: 80px;

    padding-bottom: 100px;

    margin-top: 0;
}

#product .container{

    background: transparent;

    position: relative;

    z-index: 2;
}

.product-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.45s;

    height:100%;

    position:relative;

    border:1px solid #edf1f7;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-hover);

}

.product-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.6s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-content{

    padding:30px;

}

.product-tag{

    display:inline-block;

    background:rgba(241,176,48,.12);

    color:var(--accent);

    padding:7px 16px;

    border-radius:50px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:18px;

}

.product-content h3{

    color:var(--heading);

    font-size:30px;

    font-weight:700;

    margin-bottom:15px;

}

.product-content p{

    color:var(--text);

    line-height:1.8;

    margin-bottom:25px;

}

.product-content a{

    color:var(--primary);

    font-weight:600;

    display:inline-flex;

    align-items:center;

    gap:8px;

}

.product-content a:hover{

    color:var(--accent);

}

.product-content a i{

    transition:.35s;

}

.product-content a:hover i{

    transform:translateX(8px);

}

/*==================================================
PRODUCT CARD HOVER BORDER
==================================================*/

.product-card::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:5px;

    background:var(--accent);

    transform:scaleX(0);

    transition:.35s;

}

.product-card:hover::after{

    transform:scaleX(1);

}

/*==================================================
BRANDS SECTION
==================================================*/

.brands-section{

    background:var(--light2);

    padding-top: 90px;

}

.brand-card{

    background:#fff;

    border-radius:16px;

    height:120px;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:14px;

    transition:.35s;

    border:1px solid var(--border);

    box-shadow:0 5px 20px rgba(0,0,0,.04);

}

.brand-card img{

  max-width:120px;

  max-height:90px;

  object-fit:contain;

  filter:grayscale(100%); 

  transition:.35s;

}

.brand-card:hover img{

  filter:grayscale(0%); 
  
  transform:scale(1.1);
}

.brand-card:hover{

  border-color:var(--accent);

  box-shadow:var(--shadow-hover);

  transform:translateY(-8px);

}

/*==================================================
SHOWROOM
==================================================*/

#showroom{

    background:linear-gradient(

        rgba(30,36,68,.94),

        rgba(30,36,68,.94)

    ),

    url("../images/showroom.png");

    background-size:cover;

    background-position:center;

}


#showroom h2{

    color:#fff;

}

#showroom p{

    color:#d5d9e6;

}

.showroom-feature{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:18px;

    padding:25px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.showroom-feature:hover{

    background:rgba(255,255,255,.14);

    transform:translateY(-8px);

}

.showroom-feature i{

    font-size:36px;

    color:var(--accent);

    margin-bottom:15px;

}

.showroom-feature h5{

    color:#fff;

    margin-bottom:10px;

    font-weight:600;

}

.showroom-feature p{

    margin:0;

    color:#d9dde8;

    font-size:15px;

}

/*==================================================
SECTION BACKGROUNDS
==================================================*/

#products{

    position:relative;

}


#products .container{

    position:relative;

    z-index:2;

}

/*==================================================
STATISTICS
==================================================*/

.stats-section{

    background:var(--accent);

    padding: 20px 0;

}

.counter-box{

    text-align:center;

    color:#fff;

    padding:25px;

}

.counter-box h2{

    font-size:52px;

    font-weight:800;

    color: white;

    margin-bottom:10px;

}

.counter-box p{

    margin:0;

    font-size:18px;

    letter-spacing:1px;

    color:var(--secondary);

}

/*==================================================
TESTIMONIALS
==================================================*/

#testimonials{

    background: linear-gradient(135deg,#58608A,#434B71);

}

#testimonials .section-title{
     color: var(--light);
}


#testimonials .section-subtitle{
     color: rgb(147, 145, 145);
}

.testimonial-card{

    background:var(--light);

    padding:40px;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

    position:relative;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.testimonial-card::before{

    content:"❝";

    position:absolute;

    top:15px;

    right:25px;

    font-size:70px;

    color:rgba(241,176,48,.15);

    font-weight:bold;

}

.stars{

    color:#ffc107;

    font-size:20px;

    margin-bottom:20px;

}

.testimonial-card p{

    font-size:16px;

    line-height:1.8;

    color:var(--text);

}

.testimonial-card h5{

    color:var(--heading);

    font-weight:700;

    margin-top:25px;

}

/*==================================================
CALL TO ACTION
==================================================*/

.cta-section{

    background:var(--light2);

    padding:80px 0;

}

.cta-section h2{

    font-size: 38px; 
    
    font-weight: 800; 
    
    color: var(--heading);

    margin-bottom: 30px;
}

.cta-section p{

    color:var(--text);

    line-height: 1.8;

    font-size:16px;

}

.cta-section .btn{
    margin-top: 50px;

    background:var(--primary);

    color:#fff;

    border:none;
   

}

.cta-section .btn:hover{

    background:#111827;

}

/*==================================================
FOOTER
==================================================*/

.footer{
  background: linear-gradient(180deg, #1E2444 0%, #151933 100%);
  color: #fff;
  padding: 70px 0 0;
}

.footer .row{
  justify-content: space-between; 
  gap: 40px; 
}

.footer .col-lg-4{
  flex: 1; 
  max-width: 33.333%;
  margin-bottom: 50px;
}

.footer h3{
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
}
.footer h5{
  color: #fff;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 24px;
}
.footer .brand-text span{
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 1px;
  font-weight: 600;
}
.footer-logo{
  width: 45px;
}

/* Contact List */
.contact-list{
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}
.contact-list li{
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  line-height: 1.6;
}
.contact-list li i{
  color: var(--accent);
  margin-top: 3px;
}

/* Social Icons */
.social-icons{
  display: flex;
  gap: 12px;
}
.social-icons a{
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: .3s;
}
.social-icons a:hover{
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255,255,255,.85);
}
.footer-links a{
  color: white;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: .3s;
}
.footer-links a:hover{
  color: var(--accent);
  padding-left: 5px;
}
.footer-links a i{
  color: var(--accent);
  font-size: 10px;
}

/* Map */
.map-box{
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(241,176,48,.2);
}
.map-box iframe{
  width: 600px;
  height: 450px;
  border: 0;
  display: block;
}

/* FOOTER BOTTOM FIX */


.footer-bottom-wrapper{

  width: 100%;

  padding: 22px 0;

}

.footer-bottom-inner{

  display: flex;

  justify-content: space-between; 

  align-items: center;

  flex-wrap: wrap;

  gap: 15px;

}

.copyright{

  color: rgba(255,255,255,.65);

  font-size: 14px;

  margin: 0;

}

.tagline{

  color: rgba(255,255,255,.65);

  font-size: 14px;

  margin: 0;

  text-align: right;

}

/* RESPONSIVE BREAKPOINTS */

@media (max-width: 600px) {
  .top-info-bar {
    padding: 50px 20px;
  }
  .top-info-bar .container {
    flex-direction: column;
    gap: 35px; 
  }
  .info-item {
    flex: 1 1 100%;
  }
  .info-item .label {
    font-size: 15px;
  }
  .info-item .value {
    font-size: 22px; 
  }
}

@media (max-width: 992px) {

  .top-info-bar .container {
    gap: 40px;
  }
  .info-item {
    flex: 0 1 45%;
  }

  .about-hero h1 { 
    font-size: 36px; 
  }
  .about-hero { 
    padding: 80px 20px 140px; 
  }
  .footer .col-lg-4 {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 0;
  }
  .footer .col-lg-4 {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 40px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .tagline {
    text-align: center;
  }

}


/*==================================================
WHATSAPP BUTTON
==================================================*/

.whatsapp-btn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    z-index:999;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

    transition:.35s;

}

.whatsapp-btn:hover{

    transform:scale(1.1);

    color:#fff;

}

/*==================================================
BACK TO TOP
==================================================*/

#backToTop{

    position:fixed;

    left:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

    box-shadow:var(--shadow);

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    background:var(--accent);

    color:var(--primary);

}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:991px){

.hero{

text-align:center;

padding-top:120px;

}

.hero h1{

font-size:48px;

}

.hero-buttons{

justify-content:center;

}

.glass-card{

margin-top:50px;

}

.section-title{

font-size:36px;

}

.nav-link{

margin-left:0;

padding:12px 0;

}

.navbar-collapse{

margin-top:20px;

}

}

@media (max-width:768px){

section{

padding:70px 0;

}

.hero h1{

font-size:40px;

}

.hero p{

font-size:17px;

}

.section-title{

font-size:32px;

}

.counter-box h2{

font-size:48px;

}

.product-card img{

height:220px;

}

.brand-card{

height:90px;

font-size:18px;

}

.cta-section{

text-align:center;

}

.cta-section .btn{

margin-top:25px;

}

}

@media (max-width:576px){

.hero{

min-height:auto;

padding:140px 0 80px;

}

.hero h1{

font-size:34px;

}

.section-title{

font-size:28px;

}

.btn{

width:100%;

margin-bottom:15px;

}

.hero-buttons{

display:block;

}


.brand-text h3{

font-size:18px;

}

.brand-text span{

font-size:10px;

}

.about-box{

flex-direction:column;

text-align:center;

}

.contact-list li{

font-size:15px;

}

.social-icons{

justify-content:center;

}

footer{

text-align:center;

}

}



/*=========================================
PRODUCT CATEGORIES
=========================================*/

.categories-section{
  background:#f7f9fc;
  padding:100px 0;
}

.category-card{
  background:#fff;
  border-radius:20px;
  padding:35px 25px;
  height:100%;
  border:1px solid #edf1f6;
  transition:.4s;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  position:relative;
  overflow:hidden;
  text-align:left;
}

.category-card::before{
  content:"";
  position:absolute;
  left:0; top:0;
  width:100%; height:4px;
  background:var(--accent);
  transform:scaleX(0);
  transform-origin:left;
  transition:.4s;
}

.category-card:hover::before{
  transform:scaleX(1);
}

.category-card:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 55px rgba(30,36,68,.15);
}

.category-icon{
  width:70px;
  height:70px;
  background:linear-gradient(135deg, rgba(241,176,48,.15), rgba(241,176,48,.05));
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
  transition:.35s;
}

.category-icon img{
  max-width:40px; 
  max-height:40px;
  object-fit:contain;
  filter:grayscale(100%); 
  transition:.3s;
}

.category-card:hover .category-icon img{
  filter:grayscale(0%); 
  transform:scale(1.1);
}

.category-card:hover .category-icon{
  background:var(--accent);
}

.category-card h4{
  color:var(--heading);
  font-weight:700;
  font-size:22px;
  margin-bottom:12px;
}
.category-card p{
  color:var(--text);
  line-height:1.7;
  margin:0 0 20px 0;
  font-size:15px;
}
.category-link{
  color:var(--primary);
  font-weight:600;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.category-link:hover{
  color:var(--accent);
  gap:10px;
}


.about-section { position: relative; margin-bottom: 0 !important; padding-bottom: 0 !important;}
.about .container { max-width: 1200px; margin-bottom: 0 !important; padding-bottom: 0 !important; }

.about-section .about-top{
    opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-out 0.3s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TOP PART */
.about-top {
  background: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
              url('../images/Display_all_items_5.png') no-repeat center/cover;
  padding: 70px 20px 80px; 
  text-align: center;
  color: #2b2f36;
}
.about-top h2 { font-size: 42px; font-weight: 400; letter-spacing: 2px; margin-bottom: 20px; }
.about-top .divider { width: 80px; height: 2px; background: #2b2f36; margin: 0 auto 25px; }
.about-top p { max-width: 800px; margin: 0 auto; font-size: 15px; line-height: 1.8; color: #555; }

.about-bottom {
  background:  linear-gradient(rgba(100, 99, 99, 0.92), rgba(251, 246, 246, 0.92)),
  url(../images/showroom_old.png);
  color: #2b2f36;
  padding: 80px 20px 40px;
  text-align: center;
}
.about-bottom h3 { font-size: 32px; font-weight: 400; letter-spacing: 2px; margin-bottom: 25px; }
.about-bottom p { max-width: 900px; margin: 0 auto 35px; font-size: 15px; line-height: 1.8; color: #f4f3f3; }
.btn-learn-more {
  background: #fbbf24; color: #2b2f36;
  padding: 12px 30px; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-decoration: none; border-radius: 2px;
  display: inline-block; margin-bottom: 60px;
}
.btn-learn-more:hover { background: #f59e0b; }


.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: stretch;
}
.feature-card { padding: 30px 40px; }
.icon-box {
  width: 80px; height: 80px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}

.feature-card .icon-box{ font-size: 32px;}
.feature-card:hover .icon-box {
  background: #fbbf24; border-color: #fbbf24;
}
.feature-card:hover .icon-box svg { fill: #2b2f36; }

.feature-card h4 { font-size: 18px; margin-bottom: 12px; font-weight: 600; }
.feature-card p { font-size: 14px; color: #b0b0b0; line-height: 1.7; margin: 0; }

.contact-info-section {
  background: rgba(30,36,68,.94); 
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.contact-info-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-section h2 {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.contact-info-section .contact-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto 60px;
}

/* 3 COLUMN GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 60px;
}

.contact-item {
  padding: 0 30px;
}

.contact-item.middle {
  border-left: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
}

.contact-item h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.9);
}

.contact-item p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.contact-item:hover h4,
.contact-item:hover p {
  color: #fbbf24;
  transition: color 0.3s ease;
}

.map-placeholder {
  width: 100%;
  max-width: 800px; 
  height: 350px; 
  margin: 60px auto 0;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  overflow: hidden; 
  position: relative;
}

.map-placeholder iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");

.excellence-section{
    padding:30px 20px;
    background: linear-gradient(rgba(255, 255, 255, 0.92));
    background-size: cover;
    background-attachment: fixed; 
    position: relative;
    font-family: 'Poppins', sans-serif;
}


.excellence-section::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(248, 251, 255, 0.92); /* light overlay */
  z-index:0;
}
.excellence-section .container{ position:relative; z-index:1; max-width:1200px; margin:auto; }

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

.meet-title{
    font-family: 'Playfair Display' , serif;
    font-size: 42px;
    color: #d4af37;
    font-style: italic;
    display: block;
    margin-bottom: 10px;
}

.section-header h2{
    font-size:36px; font-weight:700; color:#0d2f6f; margin-bottom:15px;
}
.section-header p{ max-width:700px; margin:auto; color:#555; line-height:1.8; }

/* Team Layout - No Cards */
.team-wrap{ display:flex; flex-direction:column; gap:60px; }
.team-row{ display:flex; justify-content:center; gap:50px; flex-wrap:wrap; }

.member{ 
  text-align:center; 
  width: 240px; 
  background: none; 
  box-shadow: none; 
  padding: 0;
}
.member:hover .img-wrap{ transform: translateY(-5px); }

.img-wrap{
    width:150px; height:150px; margin:0 auto 20px;
    border-radius:50%; 
    border: 5px solid #fff;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    transition: .3s;
}
.team-head .img-wrap{ 
  width:170px; height:170px; 
  border: 6px solid #0d2f6f; 
}

.img-wrap img{ width:100%; height:100%; object-fit:cover; border-radius:50%; }

.member h4{ color:#0d2f6f; margin-bottom:6px; font-size:15px; font-weight:700; letter-spacing:0.5px; }
.member span{ color:#0066ff; font-size:13px; font-weight:600; display:block; margin-bottom:12px; }

.badge{
  background:#0d2f6f; color:#fff; font-size:10px; font-weight:700;
  padding:4px 12px; border-radius:20px; display:inline-block; margin-bottom:12px;
}

.quote{
    font-size:12px; color:#444; line-height:1.6; 
    max-width:200px; margin:0 auto;
    background: none; box-shadow: none; padding: 0;
}
.quote i{ color:#ffc107; margin-right:4px; font-size:11px; } 

.feature-bar{ display:flex; justify-content:space-between; background:#fff; padding:25px 30px; border-radius:14px; box-shadow:0 4px 20px rgba(0,0,0,.06); margin-top:60px; gap:20px; flex-wrap:wrap; }
.feature-item{ display:flex; align-items:center; gap:12px; font-size:12px; color:#0d2f6f; font-weight:600; }
.feature-item .icon{ width:40px; height:40px; border-radius:50%; background:#0d2f6f; color:#fff; display:grid; place-items:center; font-size:18px; }
.feature-item strong{ font-weight:700; }

@media(max-width:992px){
  .team-row{ gap:30px; }
  .member{ width: 200px; }
}
@media(max-width:600px){
  .member{ width: 100%; max-width: 280px; }
  .section-header h2{ font-size: 26px; }
}





        :root {
            --jps-blue: #1E2444;
            --jps-blue-light: #58608A;
            --jps-gold: #F1B030;

            --text-dark: #1E2444;
            --text: #454545;
            --text-light: #727272;

            --white: #ffffff;
            --light-bg: #f6f7fa;
            --border: #e5e7ed;

            --shadow-sm:
                0 5px 20px rgba(30, 36, 68, 0.08);

            --shadow-md:
                0 15px 40px rgba(30, 36, 68, 0.12);

            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;

            --container: 1180px;
        }

        .electrician {
            padding: 90px 0;
        }

        .section-light {
            background: var(--light-bg);
        }

        .intro .profiles-header .recognition-content .electrician-cta .section-tag {
            display: inline-block;

            font-size: 13px;
            font-weight: 700;

            letter-spacing: 1.8px;

            color: var(--jps-gold);

            margin-bottom: 12px;
        }

        .intro .profiles-header .recognition-content .section-title {
            font-size: clamp(32px, 4vw, 48px);

            line-height: 1.15;

            color: var(--jps-blue);

            font-weight: 750;

            margin-bottom: 18px;
        }

        .section-description {
            max-width: 720px;

            margin: 0 auto;

            color: var(--text-light);

            font-size: 17px;

            line-height: 1.8;
        }

        /* =========================================================
           HERO
        ========================================================= */

        .electrician {
            position: relative;

            overflow: hidden;

            padding: 110px 0 100px;

            background:
                linear-gradient(
                    120deg,
                    var(--jps-blue),
                    #2c345e 55%,
                    var(--jps-blue-light)
                );

            color: white;
        }

        .electrician::before {
            content: "";

            position: absolute;

            width: 500px;
            height: 500px;

            border-radius: 50%;

            background: rgba(241,176,48,0.08);

            top: -250px;
            right: -120px;
        }

        .electrician::after {
            content: "";

            position: absolute;

            width: 300px;
            height: 300px;

            border-radius: 50%;

            background: rgba(255,255,255,0.04);

            bottom: -150px;
            left: -100px;
        }

        .electrician-hero-content {
            position: relative;
            z-index: 2;

            max-width: 820px;

            text-align: center;

            margin: auto;
        }

        .electrician-hero-tag {
            display: inline-flex;

            padding: 8px 16px;

            border: 1px solid rgba(241,176,48,0.45);

            border-radius: 50px;

            color: var(--jps-gold);

            font-size: 12px;

            font-weight: 700;

            letter-spacing: 1.5px;

            margin-bottom: 20px;
        }

        .electrician h1 {
            font-size: clamp(38px, 5vw, 64px);

            line-height: 1.08;

            margin-bottom: 22px;

            font-weight: 800;
        }

        .electrician h1 span {
            color: var(--jps-gold);
        }

        .electrician p {
            max-width: 700px;

            margin: auto;

            color: rgba(255,255,255,0.82);

            font-size: 18px;

            line-height: 1.8;
        }


        .electrician-stat {
            position: relative;

            margin-top: -45px;

            z-index: 5;
        }

        .electrician-stat-grid {
            display: grid;

            grid-template-columns:
                repeat(3, 1fr);

            background: var(--accent);

            border-radius: var(--radius-lg);

            box-shadow: var(--shadow-md);

            overflow: hidden;
        }

        .electrician-stat-grid .stat {
            text-align: center;

            padding: 30px 20px;

            border-right: 1px solid var(--border);
        }

        .electrician-stat-grid .stat:last-child {
            border-right: 0;
        }

        .electrician-stat-grid .stat-number {
            color: var(--jps-blue);

            font-size: 30px;

            font-weight: 800;

            line-height: 1.1;
        }

        .electrician-stat-grid .stat-label {
            margin-top: 6px;

            color: var(--text-light);

            font-size: 13px;

            font-weight: 600;
        }


        /* =========================================================
           INTRO
        ========================================================= */

        .intro {
            text-align: center;

            max-width: 820px;

            margin: auto;
        }

        .intro p {
            color: var(--text-light);

            font-size: 17px;

            line-height: 1.9;

            margin-top: 10px;
        }


        /* =========================================================
           PROFILE GRID
        ========================================================= */

        .profiles-header {
            text-align: center;

            margin-bottom: 50px;
        }

        .profiles-grid {
            display: grid;

            grid-template-columns:
                repeat(3, 1fr);

            gap: 28px;
        }


        /* =========================================================
           PROFILE CARD
        ========================================================= */

        .profile-card {
            background: white;

            border: 1px solid var(--border);

            border-radius: var(--radius-lg);

            overflow: hidden;

            box-shadow: var(--shadow-sm);

            transition:
                transform 0.3s ease,
                box-shadow 0.3s ease;
        }

        .profile-card:hover {
            transform: translateY(-7px);

            box-shadow: var(--shadow-md);
        }


        /* IMAGE */

        .profile-image {
            position: relative;

            height: 330px;

            overflow: hidden;

            background: #e9ebf1;
        }

        .profile-image img {
            width: 100%;
            height: 100%;

            object-fit: cover;

            object-position: center top;

            transition:
                transform 0.5s ease;
        }

        .profile-card:hover
        .profile-image img {
            transform: scale(1.04);
        }


        /* PARTNER BADGE */

        .partner-badge {
            position: absolute;

            left: 16px;
            top: 16px;

            padding: 7px 12px;

            border-radius: 30px;

            background: var(--jps-blue);

            color: white;

            font-size: 10px;

            font-weight: 700;

            letter-spacing: 0.8px;
        }


        /* CARD BODY */

        .profile-body {
            padding: 25px;
        }

        .profile-name {
            color: var(--jps-blue);

            font-size: 23px;

            line-height: 1.2;

            font-weight: 750;

            margin-bottom: 5px;
        }

        .profile-role {
            color: var(--jps-blue-light);

            font-size: 14px;

            font-weight: 600;

            margin-bottom: 16px;
        }


        /* EXPERIENCE */

        .experience {
            display: inline-flex;

            align-items: center;

            gap: 7px;

            padding: 7px 11px;

            background: #fff8e7;

            border-radius: 7px;

            color: #8a6500;

            font-size: 12px;

            font-weight: 700;

            margin-bottom: 18px;
        }


        /* LOCATION */

        .location {
            display: flex;

            gap: 8px;

            color: var(--text-light);

            font-size: 13px;

            margin-bottom: 18px;
        }

        .location-icon {
            color: var(--jps-gold);

            font-weight: bold;
        }


        /* SKILLS */

        .skills {
            display: flex;

            flex-wrap: wrap;

            gap: 7px;

            margin-bottom: 22px;
        }

        .skill {
            padding: 6px 9px;

            border-radius: 6px;

            background: #f1f2f6;

            color: var(--jps-blue);

            font-size: 11px;

            font-weight: 600;
        }


        /* CARD FOOTER */

        .profile-footer {
            padding-top: 18px;

            border-top: 1px solid var(--border);

            display: flex;

            justify-content: space-between;

            align-items: center;
        }

        .view-profile {
            color: var(--jps-blue);

            font-size: 13px;

            font-weight: 700;
        }

        .view-profile:hover {
            color: var(--jps-gold);
        }

        .recognition {
            color: #8a6500;

            font-size: 11px;

            font-weight: 700;
        }


        /* =========================================================
           RECOGNITION SECTION
        ========================================================= */

        .recognition-section {
            background: var(--jps-blue);

            color: white;

            position: relative;

            overflow: hidden;
        }

        .recognition-content {
            position: relative;

            z-index: 2;

            text-align: center;

            max-width: 850px;

            margin: auto;
        }

        .recognition-section .section-tag {
            color: var(--jps-gold);
        }

        .recognition-section .section-title {
            color: white;
        }

        .recognition-section p {
            color: rgba(255,255,255,0.78);

            font-size: 17px;

            line-height: 1.8;
        }

        .recognition-box {
            margin-top: 35px;

            display: inline-flex;

            align-items: center;

            gap: 20px;

            padding: 20px 28px;

            border: 1px solid rgba(241,176,48,0.35);

            border-radius: 15px;

            background: rgba(255,255,255,0.05);
        }

        .award-icon {
            width: 55px;
            height: 55px;

            display: grid;
            place-items: center;

            border-radius: 50%;

            background: var(--jps-gold);

            color: var(--jps-blue);

            font-size: 25px;
        }

        .award-text {
            text-align: left;
        }

        .award-text strong {
            display: block;

            color: white;

            font-size: 16px;
        }

        .award-text span {
            color: rgba(255,255,255,0.65);

            font-size: 13px;
        }


        /* =========================================================
           CTA
        ========================================================= */

        .electrician-cta {
            text-align: center;

            padding: 80px 0;
        }

        .electrician-cta h2 {
            color: var(--jps-blue);

            font-size: clamp(30px, 4vw, 42px);

            margin-bottom: 14px;
        }

        .electrician-cta p {
            color: var(--text-light);

            max-width: 650px;

            margin: 0 auto 28px;
        }

        .electrician-cta .cta-button {
            display: inline-flex;

            align-items: center;

            justify-content: center;

            padding: 13px 24px;

            border-radius: 8px;

            background: var(--jps-blue);

            color: white;

            font-size: 14px;

            font-weight: 700;

            transition: 0.25s ease;
        }

        .electrician-cta .cta-button:hover {
            background: var(--jps-blue-light);

            transform: translateY(-2px);
        }



        @media (max-width: 1000px) {

            .profiles-grid {
                grid-template-columns:
                    repeat(2, 1fr);
            }

        }


        @media (max-width: 768px) {

            .section {
                padding: 70px 0;
            }

            .main-nav {
                display: none;
            }

            .hero {
                padding: 85px 0 80px;
            }

            .electrician-stat-grid {
                grid-template-columns: 1fr;
            }

            .stat {
                border-right: 0;

                border-bottom:
                    1px solid var(--border);
            }

            .stat:last-child {
                border-bottom: 0;
            }

            .profiles-grid {
                grid-template-columns: 1fr;

                max-width: 500px;

                margin: auto;
            }

            .profile-image {
                height: 360px;
            }

        }


        @media (max-width: 480px) {

            .container {
                width:
                    min(
                        calc(100% - 28px),
                        var(--container)
                    );
            }

            .hero h1 {
                font-size: 38px;
            }

            .hero p {
                font-size: 15px;
            }

            .profile-body {
                padding: 21px;
            }

            .profile-image {
                height: 340px;
            }

            .recognition-box {
                display: flex;

                text-align: left;

                padding: 18px;
            }

        }


        /* =========================================================
           PROFILE HERO
        ========================================================= */

        .profile1-hero {

            padding: 170px 0 80px;

            background:
                linear-gradient(
                    135deg,
                    #ffffff 0%,
                    #f7f8fb 100%
                );
        }


        .profile1-layout {

            display: grid;

            grid-template-columns:
                450px 1fr;

            gap: 65px;

            align-items: center;
        }


        /* =========================================================
           PROFILE PHOTO
        ========================================================= */

        .profile1-photo-wrapper {

            position: relative;

            max-width: 450px;

            margin: auto;
        }


        .profile1-photo {

            position: relative;

            width: 100%;

            aspect-ratio: 4 / 5;

            overflow: hidden;

            border-radius: 24px;

            background: #e9ebf1;

            box-shadow: var(--shadow-md);
        }


        .profile1-photo img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            object-position: center top;
        }


        .partner-label {

            position: absolute;

            left: 20px;

            top: 20px;

            z-index: 3;

            padding: 9px 15px;

            border-radius: 30px;

            background: var(--jps-blue);

            color: white;

            font-size: 10px;

            font-weight: 800;

            letter-spacing: 1px;

            box-shadow:
                0 5px 15px
                rgba(0,0,0,0.15);
        }


        .profile-experience-badge {

            position: absolute;

            right: -20px;

            bottom: 30px;

            z-index: 3;

            min-width: 150px;

            padding: 17px 20px;

            border-radius: 14px;

            background: var(--jps-gold);

            color: var(--jps-blue);

            box-shadow: var(--shadow-md);

            text-align: center;
        }


        .profile-experience-badge strong {

            display: block;

            font-size: 24px;

            line-height: 1.1;

            font-weight: 800;
        }


        .profile-experience-badge span {

            display: block;

            margin-top: 3px;

            font-size: 11px;

            font-weight: 700;
        }


        /* =========================================================
           PROFILE INTRO
        ========================================================= */

        .profile1-intro {

            max-width: 620px;
        }


        .profile1-tag {

            display: inline-block;

            margin-bottom: 13px;

            color: var(--jps-gold);

            font-size: 12px;

            font-weight: 800;

            letter-spacing: 1.8px;
        }


        .profile1-name {

            color: var(--jps-blue);

            font-size:
                clamp(40px, 5vw, 58px);

            line-height: 1.08;

            font-weight: 800;

            margin-bottom: 10px;
        }


        .profile1-designation {

            color: var(--jps-blue-light);

            font-size: 19px;

            font-weight: 600;

            margin-bottom: 22px;
        }


        .profile1-location {

            display: flex;

            align-items: center;

            gap: 9px;

            margin-bottom: 25px;

            color: var(--text-light);

            font-size: 14px;
        }


        .location-icon {

            color: var(--jps-gold);

            font-size: 18px;
        }


        .profile1-summary {

            color: var(--text);

            font-size: 17px;

            line-height: 1.85;

            margin-bottom: 28px;
        }


        /* =========================================================
           QUICK DETAILS
        ========================================================= */

        .quick-details {

            display: grid;

            grid-template-columns:
                repeat(2, 1fr);

            gap: 12px;

            margin-bottom: 30px;
        }


        .quick-detail {

            padding: 14px 16px;

            border:
                1px solid var(--border);

            border-radius: 10px;

            background: white;
        }


        .quick-detail-label {

            display: block;

            color: var(--text-light);

            font-size: 11px;

            font-weight: 600;

            margin-bottom: 3px;
        }


        .quick-detail-value {

            color: var(--jps-blue);

            font-size: 14px;

            font-weight: 700;
        }


        /* =========================================================
           CONTACT BUTTONS
        ========================================================= */

        .profile1-intro .contact-buttons {

            display: flex;

            flex-wrap: wrap;

            gap: 12px;
        }


        .profile1-hero .contact-btn {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            gap: 9px;

            min-height: 48px;

            padding:
                0 20px;

            border-radius: 8px;

            font-size: 13px;

            font-weight: 700;

            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease;
        }


        .profile1-hero .contact-btn:hover {

            transform:
                translateY(-2px);

            box-shadow:
                0 8px 20px
                rgba(30,36,68,0.12);
        }


        .profile1-hero .btn-primary {

            background:
                var(--jps-blue);

            color: white;
        }


        .profile1-hero .btn-whatsapp {

            background:
                var(--jps-blue);

            color: white;
        }


        .profile1-hero .btn-outline {

            border:
                1px solid var(--jps-blue);

            color: var(--jps-blue);

            background: white;
        }


        /* =========================================================
           SECTION HEADERS
        ========================================================= */

        .profile-section-header {

            max-width: 760px;

            margin-bottom: 45px;
        }


        .profile-section-header.center {

            margin-left: auto;

            margin-right: auto;

            text-align: center;
        }


        .profile-section-header .section-tag {

            display: inline-block;

            color: var(--jps-gold);

            font-size: 12px;

            font-weight: 800;

            letter-spacing: 1.7px;

            margin-bottom: 10px;
        }


        .profile-section-header .section-title {

            color: var(--jps-blue);

            font-size:
                clamp(30px, 4vw, 43px);

            line-height: 1.15;

            font-weight: 800;

            margin-bottom: 15px;
        }


        .profile-section-header .section-description {

            color: var(--text-light);

            font-size: 16px;

            line-height: 1.8;
        }


        /* =========================================================
           ABOUT SECTION
        ========================================================= */

        .profile-about-layout {

            display: grid;

            grid-template-columns:
                1.4fr 0.8fr;

            gap: 60px;

            align-items: start;
        }


        .profile-about-text p {

            color: var(--text);

            font-size: 16px;

            line-height: 1.9;

            margin-bottom: 17px;
        }


        .profile-about-highlight {

            padding: 28px;

            border-radius: 18px;

            background:
                var(--jps-blue);

            color: white;

            box-shadow: var(--shadow-sm);
        }


        .profile-about-highlight .profile-quote-mark {

            color: var(--jps-gold);

            font-size: 45px;

            line-height: 1;

            font-weight: 800;

            margin-bottom: 8px;
        }


        .profile-about-highlight p {

            color:
                rgba(255,255,255,0.85);

            font-size: 15px;

            line-height: 1.8;

            margin-bottom: 20px;
        }


        .profile-about-highlight strong {

            color: white;

            font-size: 13px;
        }


        /* =========================================================
           SKILLS
        ========================================================= */

        .skills-section {

            background:
                var(--light-bg);
        }


        .profile-skills-grid {

            display: grid;

            grid-template-columns:
                repeat(2, 1fr);

            gap: 30px;
        }


        .profile-skills-card {

            padding: 30px;

            background: white;

            border:
                1px solid var(--border);

            border-radius:
                var(--radius-lg);

            box-shadow:
                var(--shadow-sm);
        }


        .profile-skills-card h3 {

            color: var(--jps-blue);

            font-size: 21px;

            margin-bottom: 20px;
        }


        .profile-skill-list {

            display: flex;

            flex-wrap: wrap;

            gap: 10px;
        }


        .skill {

            padding: 9px 13px;

            border-radius: 7px;

            background:
                #f0f1f5;

            color: var(--jps-blue);

            font-size: 12px;

            font-weight: 700;
        }


        /* =========================================================
           SERVICE AREAS
        ========================================================= */

        .profile-service-layout {

            display: grid;

            grid-template-columns:
                0.9fr 1.1fr;

            gap: 50px;

            align-items: center;
        }


        .service-map-box {

            min-height: 310px;

            display: flex;

            align-items: center;

            justify-content: center;

            border-radius: 22px;

            background:
                linear-gradient(
                    135deg,
                    var(--jps-blue),
                    var(--jps-blue-light)
                );

            color: white;

            text-align: center;

            padding: 30px;
        }


        .service-map-content {

            max-width: 300px;
        }


        .service-map-icon {

            width: 75px;

            height: 75px;

            display: grid;

            place-items: center;

            margin:
                0 auto 20px;

            border-radius: 50%;

            background:
                rgba(241,176,48,0.15);

            color:
                var(--jps-gold);

            font-size: 34px;
        }


        .service-map-content h3 {

            font-size: 25px;

            margin-bottom: 7px;
        }


        .service-map-content p {

            color:
                rgba(255,255,255,0.7);

            font-size: 13px;
        }


        .area-list {

            display: grid;

            grid-template-columns:
                repeat(2, 1fr);

            gap: 12px;
        }


        .area {

            display: flex;

            align-items: center;

            gap: 9px;

            padding: 13px 15px;

            border:
                1px solid var(--border);

            border-radius: 9px;

            background: white;

            color: var(--text);

            font-size: 13px;

            font-weight: 600;
        }


        .area::before {

            content: "✓";

            display: grid;

            place-items: center;

            width: 21px;

            height: 21px;

            flex-shrink: 0;

            border-radius: 50%;

            background:
                #fff4d6;

            color:
                #a47600;

            font-size: 11px;

            font-weight: 800;
        }


        /* =========================================================
           PROFESSIONAL DETAILS
        ========================================================= */

        .details-card {

            background: white;

            border:
                1px solid var(--border);

            border-radius:
                var(--radius-lg);

            overflow: hidden;

            box-shadow:
                var(--shadow-sm);
        }


        .details-row {

            display: grid;

            grid-template-columns:
                230px 1fr;

            padding: 18px 25px;

            border-bottom:
                1px solid var(--border);
        }


        .details-row:last-child {

            border-bottom: 0;
        }


        .details-label {

            color: var(--text-light);

            font-size: 13px;

            font-weight: 600;
        }


        .details-value {

            color: var(--jps-blue);

            font-size: 14px;

            font-weight: 700;
        }


        /* =========================================================
           PHOTO GALLERY
        ========================================================= */

        .gallery-section {

            background:
                var(--light-bg);
        }


        .gallery-grid {

            display: grid;

            grid-template-columns:
                repeat(4, 1fr);

            gap: 18px;
        }


        .gallery-item {

            position: relative;

            aspect-ratio: 4 / 3;

            overflow: hidden;

            border-radius: 14px;

            background: #e8e9ed;

            cursor: pointer;
        }


        .gallery-item:first-child {

            grid-column:
                span 2;

            grid-row:
                span 2;
        }


        .gallery-item img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            transition:
                transform 0.4s ease;
        }


        .gallery-item:hover img {

            transform:
                scale(1.05);
        }


        .gallery-overlay {

            position: absolute;

            inset: 0;

            display: flex;

            align-items: flex-end;

            padding: 18px;

            background:
                linear-gradient(
                    transparent 45%,
                    rgba(0,0,0,0.55)
                );

            color: white;

            font-size: 12px;

            font-weight: 700;

            opacity: 0;

            transition:
                opacity 0.3s ease;
        }


        .gallery-item:hover
        .gallery-overlay {

            opacity: 1;
        }


        /* =========================================================
           RECOGNITION
        ========================================================= */

        .recognition-layout {

            display: grid;

            grid-template-columns:
                0.9fr 1.1fr;

            gap: 55px;

            align-items: center;
        }


        .award-card {

            padding: 38px;

            border-radius:
                var(--radius-lg);

            background:
                var(--jps-blue);

            color: white;

            text-align: center;

            box-shadow:
                var(--shadow-md);
        }


        .award-icon {

            width: 80px;

            height: 80px;

            display: grid;

            place-items: center;

            margin:
                0 auto 20px;

            border-radius: 50%;

            background:
                var(--jps-gold);

            color:
                var(--jps-blue);

            font-size: 35px;
        }


        .award-card h3 {

            font-size: 23px;

            margin-bottom: 7px;
        }


        .award-card p {

            color:
                rgba(255,255,255,0.7);

            font-size: 13px;

            line-height: 1.7;
        }


        .award-year {

            display: inline-block;

            margin-top: 18px;

            padding: 7px 15px;

            border:
                1px solid
                rgba(241,176,48,0.4);

            border-radius: 30px;

            color:
                var(--jps-gold);

            font-size: 12px;

            font-weight: 800;
        }


        /* =========================================================
           CERTIFICATE
        ========================================================= */

        .certificate-wrapper {

            padding: 20px;

            border:
                1px solid var(--border);

            border-radius:
                var(--radius-lg);

            background:
                var(--light-bg);

            text-align: center;
        }


        .certificate-wrapper img {

            width: 100%;

            max-height: 500px;

            object-fit: contain;

            border-radius: 8px;

            box-shadow:
                0 8px 25px
                rgba(0,0,0,0.12);
        }


        .certificate-caption {

            margin-top: 15px;

            color: var(--text-light);

            font-size: 12px;
        }


        /* =========================================================
           CONTACT CTA
        ========================================================= */

        .profile-section .contact-section {

            background:
                linear-gradient(
                    135deg,
                    var(--jps-blue),
                    #303866
                );

            color: white;
        }


        .profile-section .contact-layout {

            display: grid;

            grid-template-columns:
                1fr auto;

            gap: 40px;

            align-items: center;
        }


        .profile-section .contact-section .section-tag {

            color:
                var(--jps-gold);
        }


        .profile-section .contact-section h2 {

            color: white;

            font-size:
                clamp(30px, 4vw, 42px);

            line-height: 1.15;

            margin-bottom: 12px;
        }


        .profile-section .contact-section p {

            max-width: 650px;

            color:
                rgba(255,255,255,0.72);

            font-size: 15px;

            line-height: 1.8;
        }


        .profile-section .contact-actions {

            display: flex;

            flex-wrap: wrap;

            gap: 10px;
        }


        .profile-section .contact-actions .contact-btn {

            white-space: nowrap;
        }


        /* =========================================================
           BACK TO ELECTRICIANS
        ========================================================= */

        .back-section {

            padding: 35px 0;

            background: white;

            border-top:
                1px solid var(--border);
        }


        .back-link {

            display: inline-flex;

            align-items: center;

            gap: 8px;

            color: var(--jps-blue);

            font-size: 13px;

            font-weight: 700;
        }


        .back-link:hover {

            color: var(--jps-gold);
        }


        /* =========================================================
           FOOTER
        ========================================================= */

        .site-footer {

            padding: 30px 0;

            background:
                #151a35;

            color:
                rgba(255,255,255,0.6);

            text-align: center;

            font-size: 13px;
        }


        .site-footer strong {

            color: white;
        }


        /* =========================================================
           RESPONSIVE
        ========================================================= */

        @media (max-width: 1000px) {

            .profile-layout {

                grid-template-columns:
                    380px 1fr;

                gap: 40px;
            }


            .about-layout {

                grid-template-columns:
                    1fr;
            }


            .service-layout {

                grid-template-columns:
                    1fr;
            }


            .recognition-layout {

                grid-template-columns:
                    1fr;
            }


            .gallery-grid {

                grid-template-columns:
                    repeat(2, 1fr);
            }

        }


        @media (max-width: 768px) {

            .container {

                width:
                    min(
                        calc(100% - 30px),
                        var(--container)
                    );
            }


            .main-nav {

                display: none;
            }


            .profile-layout {

                grid-template-columns:
                    1fr;

                gap: 45px;
            }


            .profile-photo-wrapper {

                max-width: 420px;
            }


            .profile-intro {

                text-align: center;

                margin: auto;
            }


            .profile-location {

                justify-content: center;
            }


            .contact-buttons {

                justify-content: center;
            }


            .quick-details {

                max-width: 500px;

                margin-left: auto;

                margin-right: auto;
            }


            .skills-grid {

                grid-template-columns:
                    1fr;
            }


            .contact-layout {

                grid-template-columns:
                    1fr;

                text-align: center;
            }


            .contact-actions {

                justify-content: center;
            }

        }


        @media (max-width: 550px) {

            .section {

                padding: 65px 0;
            }


            .profile-hero {

                padding:
                    45px 0 60px;
            }


            .profile-photo {

                aspect-ratio:
                    4 / 5;
            }


            .experience-badge {

                right: 10px;

                bottom: 20px;
            }


            .profile-name {

                font-size: 39px;
            }


            .profile-summary {

                font-size: 15px;
            }


            .quick-details {

                grid-template-columns:
                    1fr;
            }


            .area-list {

                grid-template-columns:
                    1fr;
            }


            .details-row {

                grid-template-columns:
                    1fr;

                gap: 5px;

                padding: 16px 20px;
            }


            .gallery-grid {

                grid-template-columns:
                    1fr 1fr;

                gap: 10px;
            }


            .gallery-item:first-child {

                grid-column:
                    span 2;

                grid-row:
                    span 1;
            }


            .gallery-overlay {

                opacity: 1;
            }


            .award-card {

                padding: 28px 20px;
            }

        }