@charset "utf-8";
/* CSS Document */

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        :root {
  --brand-black: #0A0A0A;
  --brand-offwhite: #F8F6E9;
  --brand-mint: #82E0C7;
  --brand-gray: #999C9E;

  /* Map old variable names to match your existing code */
  --primary: var(--brand-mint);
  --secondary: var(--brand-gray);
  --white: var(--brand-offwhite);
  --dark: var(--brand-black);
}

        body {
            line-height: 1.7;
            color: var(--dark);
            background: var(--silver #CCC);
        }

        /* Header */
.site-header {
  background: #1A304A; /* ✅ Lighter than footer */
  color: #F0FDFA;
  padding: 22px 25px;
  margin: 0;
  border-bottom: 2px solid #2DD4BF;
  position: sticky;
  top: 0;
  z-index: 99;
  font-family: 'Segoe UI', sans-serif;
}

.header-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.header-brand h2 {
  color: #2DD4BF;
  font-size: 1.7rem;
  margin: 0 0 4px;
}
.header-brand p {
  color: #CCFBF1;
  font-size: 0.95rem;
  margin: 0;
}

.header-nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.header-nav a {
  color: #CCFBF1;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.header-nav a:hover {
  color: #5EEAD4;
  border-bottom: 2px solid #5EEAD4;
  padding-bottom: 3px;
}

/* image layer */
.wrapper {
  position: relative; /* Anchor for absolute image */
  width: 100%;
  min-height: 500px;
  background: ; /* Main background */
  overflow: hidden;
  padding: 70px 20px;
}

/* Image layer (background ← IMAGE → text) */
.bg-overlay-img {
  position: absolute;
  /* EDIT THESE 4 VALUES TO MOVE IMAGE */
  top: 110px;
  bottom: auto;
  left: 72%;
  right: auto;

  transform: translateX(-50%); /* Center horizontally when left:50% */

  /* Responsive sizing */
  max-width: 850px;
  width: 75%;
  height: auto;
  opacity: 0.10; /* Faint watermark look */
  z-index: 1; /* Between background and text */
}

    /* Hero Section */
.hero {
    background: #1A304A; linear-gradient(rgba(10, 10, 10, 0.85), rgba(130, 224, 199, 0.70)), url('https://oneelectra.com/1920x800?text=One+Electra+EV+Charging+Solutions') center/cover no-repeat;
    color: var(--white);
    padding: 7rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
	text-justify:center;
}

.hero p {
    font-size: 1.25rem;
            margin-bottom: 2.5rem;
            max-width: 850px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
}

        .btn-group {
            display: flex;
            gap: 1.2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 0.9rem 2.2rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--white);
            color: var(--white);
        }

        .btn-primary:hover {
            background: #009A24;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 180, 42, 0.3);
        }

        .btn-outline {
            background: #1A304A;
            color: var(--white);
            border: 2px solid var(--brand-mint);
        }

        .btn-outline:hover {
            background: var(--brand-mint);
            color: var(--white);
        }

        /* Sections */
        section {
            padding: 5rem 2rem;
            max-width: 1280px;
            margin: 0 auto;
            display: none;
            animation: fadeIn 0.5s ease;
        }

        section.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 3.5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            width: 90px;
            height: 4px;
            background: var(--brand-mint);
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* About Us */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-img {
            border-radius: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-text h3 {
            color: var(--dark);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }

        .about-text p {
            margin-bottom: 1rem;
            color: #82E0C7;
        }

        /* Products */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.2rem;
        }

        .product-card {
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #E5E6EB;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(22, 93, 255, 0.18);
        }

        .product-img {
            width: 100%;
            height: 200px;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .product-info {
            padding: 1.5rem;
            text-align: center;
        }

        .product-info h3 {
            color: var(--primary);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }

        .product-info p {
            color: #4E5969;
            font-size: 0.95rem;
        }

        .product-tag {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.3rem 0.8rem;
            background: rgba(22, 93, 255, 0.1);
            color: var(--black);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

.product-whatsapp-link {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-whatsapp-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(45, 212, 191, 0.25);
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
}

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--light);
            padding: 2.2rem;
            border-radius: 12px;
            border-left: 5px solid var(--primary);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            border-left-color: var(--brand-mint);
            background: rgba(22, 93, 255, 0.03);
        }

        .service-card h3 {
            margin-bottom: 1rem;
            color: var(--dark);
            font-size: 1.3rem;
        }

        .service-card p {
            color: #4E5969;
        }

        /* Contact */
.contact-wrapper {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 25px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

.form-column, .info-column {
  flex: 1 1 420px;
}

/* Form Style */
.form-column h3 {
  font-size: 1.4rem;
  color: #2DD4BF;
  margin-bottom: 20px;
  font-weight: 700;
}
.form-column input, .form-column textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border: 1px solid #2DD4BF;
  border-radius: 8px;
  background: rgba(255,255,255,0.95);
  font-size: 1rem;
  box-sizing: border-box;
}
.form-column button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #2DD4BF;
  color: #0F1A2A;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.form-column button:hover {
  background: #1A998E;
  transform: translateY(-2px);
}

/* Contact Info Style */
.info-column h2 {
  font-size: 1.5rem;
  color: #2DD4BF;
  margin-bottom: 10px;
  font-weight: 700;
}
.contact-name {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 25px;
  color: #333;
}
.detail-row {
  display: flex;
  margin: 14px 0;
  font-size: 1rem;
}
.label {
  min-width: 105px;
  font-weight: 600;
  color: #1A998E;
}
.detail-row span:last-child {
  color: #444;
}

/* ===== ONE ELECTRA BRAND FAQ STYLES ===== */
.oneelectra-faq-section{
    max-width: 1150px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
}
.faq-heading{
    font-size: 30px;
    color:#182233;
    margin-bottom:35px;
    font-weight:700;
}
.faq-item{
    background:#ffffff;
    border:1px solid #dde3ee;
    border-radius:10px;
    margin-bottom:14px;
    overflow:hidden;
    transition: 0.25s ease;
}
.faq-item:hover{
    box-shadow: 0 4px 14px rgba(24, 34, 51, 0.10);
    border-color:#3086d8;
}
.faq-question{
    width:100%;
    background:transparent;
    border:none;
    padding:18px 24px;
    font-size:17px;
    font-weight:600;
    text-align:left;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#182233;
}
/* Animated Arrow - Brand Accent Blue */
.arrow-icon{
    width:22px;
    height:22px;
    position:relative;
    transition: transform 0.3s ease;
}
.arrow-icon::before, .arrow-icon::after{
    content:"";
    position:absolute;
    width:12px;
    height:2px;
    background-color:#3086d8;
}
.arrow-icon::before{
    transform: rotate(45deg);
    right:0px;
}
.arrow-icon::after{
    transform: rotate(-45deg);
    left:0px;
}
.faq-item.open .arrow-icon{
    transform: rotate(180deg);
}
.faq-item.open .faq-question{
    color:#3086d8;
}

.faq-answer{
    padding:0 24px;
    max-height:0;
    overflow:hidden;
    color:#4a5468;
    line-height:1.8;
    font-size:15px;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer{
    padding:0 24px 22px 24px;
    max-height:700px;
}

/* ===== PAGINATION STYLES ===== */
.faq-pagination{
    margin-top:35px;
    display:flex;
    gap:12px;
    justify-content:center;
}
.page-btn{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid #3086d8;
    background:#fff;
    color:#3086d8;
    font-size:20px;
    cursor:pointer;
    transition:0.2s;
}
.page-btn.active{
    background:#3086d8;
    color:#ffffff;
}
.page-btn:hover{
    background:#3086d8;
    color:#fff;
}
/* Hide inactive FAQ pages */
.faq-page{
    display:none;
}
.faq-page.active{
    display:block;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  background: #25D366;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}
.whatsapp-btn:hover {
  background: #1DA851;
}
        /* Footer */
        /* Font Awesome for Icons — keep this in <head> if you move it later */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.site-footer {
  background: #0F1A2A;
  color: #F0FDFA;
  padding: 50px 25px 25px;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-brand h2 {
  color: #2DD4BF;
  font-size: 1.8rem;
  margin: 0 0 8px;
}
.footer-brand p {
  color: #CCFBF1;
  font-size: 1rem;
}

.footer-social h4, .footer-links h4 {
  color: #5EEAD4;
  font-size: 1.1rem;
  margin: 0 0 15px;
}

/* Social Links Style */
.social-links {
  display: flex;
  gap: 30px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.1);
  color: #2DD4BF;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(45, 212, 191, 0.3);
}
.social-link.linkedin:hover { background: #0A66C2; color: white; }
.social-link.instagram:hover { background: #E4405F; color: white; }
.social-link.facebook:hover { background: #1877F2; color: white; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); }

/* Quick Links */
.footer-links a {
  display: block;
  color: #CCFBF1;
  text-decoration: none;
  margin: 8px 0;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #2DD4BF;
  padding-left: 5px;
}

/* time zone */
.time-widget{
    font-family: sans-serif;
    font-size: 17px;
    line-height: 1.7;
}
.time-row{
    margin:4px 0;
}

.time-row{
    display:flex;
    justify-content:space-between;
    gap:6px;
    font-size:17px;
    line-height:1.6;
}
.time-label{
    opacity:0.55;
}
.time-value{
    font-weight:bold;
    color:#bbbbbb;
    min-width:80px;
    text-align:center;
}
/* Copyright */
.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(45, 212, 191, 0.2);
  text-align: center;
  font-size: 0.9rem;
  color: #94A3B8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }

 /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }
            nav ul {
                gap: 1rem;
                font-size: 0.9rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .about-content, .contact-wrap {
                grid-template-columns: 1fr;
            }
            section {
                padding: 3rem 1.5rem;
            }
			
			/* Responsive: Stack on mobile */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }
  .header-nav {
    justify-content: center;
    gap: 18px;
  }

.bg-overlay-img {
    top: 60px; /* Move image up on phones */
    max-width: 300px;
  }
	
        }
