/* =====================================================
   OCL Greentech - Custom Styles
   Bootstrap 5 Theme Overrides
   ===================================================== */

/* ================== FONTS ================== */

@font-face {
		font-family: 'CameraPlainVariable';
		src: url('https://cdn.gpteng.co/mcp-widgets/v1/fonts/CameraPlainVariable.woff2') format('woff2');
		font-weight: 100 900;
		font-style: normal;
		font-display: swap;
	}
body {
    font-family: Plus Jakarta Sans,system-ui,sans-serif;
}

/* ================== COLOR VARIABLES ================== */
:root {
    --bs-primary: #12ba87;
    --bs-primary-rgb: 34, 197, 94;
    --bs-success: #12ba87;
    --bs-success-rgb: 34, 197, 94;
    --bs-dark: #0f172a;
    --bs-dark-rgb: 15, 23, 42;
}

/* ================== BUTTONS ================== */
.btn-primary {
    --bs-btn-bg: #12ba87;
    --bs-btn-border-color: #12ba87;
    --bs-btn-hover-bg: #12ba87;
    --bs-btn-hover-border-color: #12ba87;
    --bs-btn-active-bg: #12ba87;
    --bs-btn-active-border-color: #12ba87;
    --bs-btn-disabled-bg: #12ba87;
    --bs-btn-disabled-border-color: #12ba87;
}

.btn-success {
    --bs-btn-bg: #12ba87;
    --bs-btn-border-color: #12ba87;
    --bs-btn-hover-bg: #12ba87;
    --bs-btn-hover-border-color: #12ba87;
}

.btn-outline-light:hover {
    color: #0f172a;
}

.btn-dark {
    --bs-btn-bg: #0f172a;
    --bs-btn-border-color: #0f172a;
    --bs-btn-hover-bg: #1e293b;
    --bs-btn-hover-border-color: #1e293b;
}

/* ================== NAVBAR ================== */
.navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-brand img {
    transition: transform 0.2s ease;
}

.navbar-brand:hover img {
    transform: scale(1.02);
}

.nav-link {
    color: #1e293b;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #22c55e;
}

.mega-menu{
    width:min(620px,92vw);
    border-radius:1rem;
}
.mega-menu h6{
    font-weight:700;
    margin-bottom:.75rem;
}
.mega-menu .dropdown-item{
    padding:.4rem 0;
    color:var(--muted);
}
.mega-menu .dropdown-item:hover{
    background:transparent;
    color:var(--primary);
}
@media (min-width:992px){
    .mega-dropdown:hover .dropdown-menu{
        display:block;
    }
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 0.75rem;
    padding: 0.75rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.25rem;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

/* ================== TEXT UTILITIES ================== */
.letter-spacing {
    letter-spacing: 0.1em;
}

.text-primary {
    color: #12ba87 !important;
}

.text-success {
    color: #12ba87 !important;
}

.bg-primary {
    background-color: #12ba87 !important;
}

.bg-success {
    background-color: #12ba8835 !important;
}

/* ================== CARDS ================== */
.card {
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-hover:hover .bi-arrow-right {
    transform: translateX(4px);
}

.card-hover .bi-arrow-right {
    transition: transform 0.3s ease;
}

/* ================== ICON BOX ================== */
.icon-box {
    transition: background-color 0.3s ease;
}

.card-hover:hover .icon-box {
    background-color: rgba(34, 197, 94, 0.2) !important;
}

/* ================== PLANTS SECTION ================== */
.plant-card {
    cursor: pointer;
}

.plant-card img {
    transition: transform 0.5s ease;
}

.plant-card:hover img {
    transform: scale(1.05);
}

.plant-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.3), transparent);
}

/* ================== FOOTER ================== */
footer {
    background-color: #0f172a;
}

.hover-link {
    transition: color 0.2s ease;
}

.hover-link:hover {
    color: #22c55e !important;
}

footer .btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-color: rgba(255, 255, 255, 0.2);
}

footer .btn-outline-light:hover {
    background-color: #12ba87;
    border-color: #12ba87;
    color: white;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 500px !important;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-6 {
        font-size: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 450px !important;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ================== ANIMATIONS ================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
}

/* ================== SCROLLBAR ================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* ================== SELECTION ================== */
::selection {
    background-color: rgba(34, 197, 94, 0.2);
    color: #0f172a;
}

/* ================== FORM FOCUS STATES ================== */
.form-control:focus,
.form-select:focus {
    border-color: #12ba87;
    box-shadow: 0 0 0 0.25rem rgba(34, 197, 94, 0.25);
}

/* ================== BREADCRUMB ================== */
.breadcrumb-item + .breadcrumb-item::before {
    color: #94a3b8;
}

.breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #22c55e;
}

.breadcrumb-item.active {
    color: #22c55e;
}

/* ================== BADGE ================== */
.badge.bg-primary {
    background-color: #12ba87 !important;
}

/* ================== TABLE ================== */
.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(34, 197, 94, 0.05);
}

/* ================== PAGE HEADER ================== */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 4rem 0;
}

.page-header h1 {
    color: white;
}

.page-header .breadcrumb {
    margin-bottom: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a,
.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumb-item.active {
    color: #22c55e;
}

/* ================== PRODUCT CARD ================== */
.product-card {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #12ba87;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15);
}

.product-card img {
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* ================== SPECS TABLE ================== */
.specs-table {
    border-radius: 0.5rem;
    overflow: hidden;
}

.specs-table th {
    background-color: #f8fafc;
    color: #64748b;
    font-weight: 600;
    font-size: 0.875rem;
    width: 40%;
}

.specs-table td {
    font-size: 0.875rem;
}

/* ================== USP LIST ================== */
.usp-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.usp-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: #12ba87;
    border-radius: 50%;
}

/* ================== CONTACT FORM ================== */
.contact-form .form-control,
.contact-form .form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.contact-form label {
    font-weight: 600;
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

/* ================== MAP ================== */
.map-container {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ================== BLOG CARD ================== */
.blog-card {
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.blog-hero{padding:5rem 0 4.5rem}

.blog-cover-image{
  width:100%;
  border-radius:1rem;
  object-fit:cover;
  max-height:460px
}

.blog-meta{
  display:flex;
  flex-wrap:wrap;
  gap:1rem 1.2rem;
}
.blog-meta span{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  color:rgba(255,255,255,.84);
  font-weight:600;
  font-size:.92rem;
}
.blog-cover-card{border-radius:1.2rem; overflow:hidden}
.blog-article p,
.blog-article li{
  color:#7f7f7f;
  font-size:18px;
  line-height:1.95;
}
.blog-article h2{
  font-size:24px;
  font-weight:700;
  color:var(--secondary);
  margin:2rem 0 1rem;
}
.blog-article h3{
  font-size:20px;
  font-weight:700;
  color:var(--secondary);
  margin:2rem 0 1rem;
}
.blog-article ul{padding-left:1.2rem; margin:1rem 0}
.blog-article blockquote{
  margin:1.75rem 0;
  padding:1.4rem 1.5rem;
  border-left:4px solid var(--primary);
  background:rgba(18,186,137,.08);
  border-radius:0 1rem 1rem 0;
  color:var(--secondary);
  font-size:1.08rem;
  font-weight:700;
  line-height:1.8;
}

.inner-hero{
  position:relative;
  padding:5rem 0;
  overflow:hidden;
  background:linear-gradient(135deg, rgba(22,32,51,.96), rgba(22,32,51,.82)), url('../assets/images/hero-bg.jpg') center/cover no-repeat;
}

.page-subtitle{
  max-width:62ch;
  color:rgba(255,255,255,.78);
  font-size:1.03rem;
  line-height:1.85;
}

.page-subtitle p{
  max-width:62ch;
  color:rgba(255,255,255,.78);
  font-size:1.03rem;
  line-height:1.85;
}


/* ================== TIMELINE ================== */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #12ba87, #22c55e50);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}
/* 
.timeline-item::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    background-color: #12ba87;
    border-radius: 50%;
    transform: translateX(-5px);
} */

/* ================== ACCORDION ================== */
.accordion-button:not(.collapsed) {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.accordion-button:focus {
    border-color: #12ba87;
    box-shadow: 0 0 0 0.25rem rgba(34, 197, 94, 0.25);
}

.accordion-button::after {
    filter: hue-rotate(80deg);
}

/* ================== TAB ================== */
.nav-tabs .nav-link {
    color: #64748b;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 1rem 1.5rem;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: #12ba87;
}

.nav-tabs .nav-link.active {
    color: #12ba87;
    border-bottom-color: #12ba87;
    background: transparent;
}

.nav-item .nav-link{
    font-size:14px;
}

.mega-menu{
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    padding: 24px;
    right:-350px;
}

.dropdown-menu a h6{
    font-size: 14px;
}

.dropdown-menu a{
    font-size: 12px;
}

@media (max-width: 992px) {
    .mega-menu{
        box-shadow: none !important;
        padding: 0 0 0 25px !important;
        right:0 !important;
    }
}

/* ================== LOADING SPINNER ================== */
.spinner-border.text-primary {
    color: #12ba87 !important;
}
/* HERO */
.hero {
    background: #f1f9f6;
    padding: 30px 0 30px;
    text-align: center;
}

.hero small {
    color: #12ba87;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero h1 {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    margin-top: 10px;
}

.hero p {
    color: #64748b;
    font-size: 15px;
    /* max-width: 650px; */
    margin-top: 0px;
}

/* SECOND SECTION */
.section {
    padding: 90px 0;
}

.img-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
}

/* EVEN (2nd image) niche shift hogi */
.col-6:nth-child(even) .img-box {
    margin-top: 40px;
}

/* OPTIONAL: thoda aur stylish banana ho */
.col-6:nth-child(odd) .img-box {
    margin-top: 0;
}

.content h2 {
    font-size: 34px;
    font-weight: 700;
}

.content p {
    color:  #7593b2;
    line-height: 1.7;
}

.list {
    margin-top: 20px;
    padding: 0;
}

.list li {
    list-style: none;
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
    color:  #7593b2;
}

.list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #12ba87;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}


.cable-section {
    background: #f3f4f6;
    padding: 90px 0;
}

/* TEXT */
.title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
}

.desc {
    color: #7593b2;
    margin: 15px 0 20px;
    line-height: 1.7;
}

/* LIST */
.custom-list {
    padding: 0;
}

.custom-list li {
    list-style: none;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color:  #7593b2;
}

.custom-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #12ba87;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

/* IMAGES */
.image-wrapper {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.image-wrapper img {
    width: 48%;
    border-radius: 16px;
    object-fit: cover;
    height: 260px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Slight size variation like original */
.img1 {
    margin-top: 0;
}

.img2 {
    margin-top: 30px;
}


.blog-section {
    background: #f9fafb;
    padding: 80px 0;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    height: 200px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 40px;
    font-weight: 600;
}
.blog-img img {
    width: 100%;
    border-radius: 0;
    height: 200px;
}

.blog-content {
    padding: 20px;
}

.meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.badge-custom {
    background: rgba(18, 186, 135, 0.1);
    color: #12ba87;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 8px;
}

.time, .date {
    font-size: 13px;
    color: #6b7280;
}

.blog-content h5 {
    font-weight: 600;
    margin: 10px 0;
    font-size: 18px;
    color: #000;
}

.blog-content p {
    color: #6b7280;
    font-size: 14px;
}

.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.read-more {
    color: #12ba87;
    font-weight: 500;
    text-decoration: none;
}

.read-more i {
    margin-left: 5px;
}

.read-more:hover {
    text-decoration: underline;
}


/* SECTION */
.journey-section {
    background: #0f172a;
    color: #fff;
    padding: 100px 0;
}

/* HEADING */
.journey-subtitle {
    color: #12ba87;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.journey-title {
    font-size: 40px;
    font-weight: 700;
}

/* LINE */
.timeline-line {
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #12ba874d;
}

/* GRID */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    position: relative;
}

/* ITEM */
.timeline-item {
    position: relative;
    text-align: center;
}

/* DOT */
.timeline-dot {
    width: 12px;
    height: 12px;
    background: #12ba87;
    border-radius: 50%;
    margin: 0 auto 12px;
    position: relative;
    z-index: 2;
}

/* CARD */
.timeline-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 12px;
    text-align: left;
}

/* YEAR */
.timeline-card h6 {
    color: #12ba87;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}
.text-p{
    color: #12ba87;
}
/* TEXT */
.timeline-card p {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* ZIG-ZAG EFFECT (IMPORTANT) */
.timeline-item:nth-child(even) {
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .timeline-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline-line {
        display: none;
    }

    .timeline-item {
        margin-top: 0 !important;
    }
}

@media (max-width: 576px) {
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* TEAM */
.team-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e6e6e6;
}

.team-card h6 {
  font-weight: 600;
}

.team-card p {
  font-size: 13px;
}

/* CERTIFICATION */
.cert-card {
  background: #fff;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid #eee;
  transition: 0.3s;
}
.cert-card i{
    font-size: 16px !important;
}
.cert-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}


.info-card {
  background: #f8f9fa;
  border-radius: 14px;
  padding: 30px 25px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.icon-box {
  width: 55px;
  height: 55px;
  background: #dff5ec;   /* light green bg */
  color: #12ba87;        /* icon green */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 24px;
  margin-bottom: 15px;
}

.info-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.info-card p {
  color: #6c757d;
  margin: 0;
  font-size: 14px;
}


/* CARD */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.product-img {
  height: 300px;
  overflow: hidden;
  background: #f1f1f1;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: 0.4s;
}

/* IMAGE HOVER ZOOM */
.product-card:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.product-content {
  padding: 20px;
}

.product-content h5 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}

.product-content p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 12px;
}

/* BUTTON */
.view-btn {
  text-decoration: none;
  color: #12ba87;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}

.view-btn span {
  transition: 0.3s;
}

.view-btn:hover span {
  transform: translateX(5px);
}


body {
  font-family: Plus Jakarta Sans,system-ui,sans-serif;
  background: #f7f7f7;
}

.contact-section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.flex {
  display: flex;
  gap: 15px;
}

.icon {
  width: 40px;
  height: 40px;
  background: #e6f4ea;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 18px;
}

h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

p, a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
}

a:hover {
  color: #28a745;
}

.form-area {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  font-weight: bold;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
}

input:focus, textarea:focus {
  border-color: #28a745;
}

button {
  background: #28a745;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #218838;
}

@media(max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Section spacing */
section {
  padding: 80px 0;
}

/* Image Styling */
section img {
  border-radius: 14px;
  transition: all 0.4s ease;
}

section img:hover {
  transform: scale(1.05);
}

/* Card Feel (content side) */
/* section .col-lg-6:last-child {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

section .col-lg-6:last-child:hover {
  transform: translateY(-5px);
} */

/* Headings */
section h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

/* Badge */
.badge {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 8px;
}

/* Text */
section p {
  font-size: 15px;
  line-height: 1.6;
}

/* List Styling */
section ul li {
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

section ul li i {
  font-size: 20px;
  color: #0d6efd;
  margin-right: 6px;
}

/* Location text */
section .text-primary {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }

  section h3 {
    font-size: 22px;
  }
}

.text-12 {
    font-size: 12px;
}

.text-14 {
    font-size: 14px;
}

.text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
            line-clamp: 2; 
    -webkit-box-orient: vertical;
}


.product-breadcrumb-bar{
  background:#eef2f5;
  border-top:1px solid rgba(15,23,42,.04);
  border-bottom:1px solid rgba(15,23,42,.06);
  padding:1rem 0;
}
.product-breadcrumb{
  gap:.5rem;
  flex-wrap:wrap;
}
.product-breadcrumb .breadcrumb-item,
.product-breadcrumb .breadcrumb-item a{
  font-size:14px;
  color:#64748b;
}
.product-breadcrumb .breadcrumb-item.active{
  color:#0f1729;
  font-weight:500;
}
.product-breadcrumb .breadcrumb-item + .breadcrumb-item::before{
  color:#94a3b8;
}

.header-contact-btn{
  padding:.8rem 1.45rem;
  border-radius:.45rem;
}

.product-detail-section{
  padding:3rem 0 3.5rem;
  background:#fff;
}
.product-image-box{
  aspect-ratio:1/1;
  background:#eef2f5;
  border-radius:16px;
  overflow:hidden;
}
.product-detail-content{
  padding-top:.25rem;
}
.product-title-main{
  font-size:30px;
  line-height:1.15;
  font-weight:700;
  color:#0f1729;
  margin:0 0 1rem;
  letter-spacing:-.03em;
}
.product-main-desc{
  font-size:15px;
  line-height:1.75;
  color:#64748b;
  margin:0 0 1.5rem;
  max-width:720px;
}
.product-enquire-btn{
    border-radius: 8px;
    padding: 10px 20px;
    margin-bottom: 17px;
    background-color: #12ba87 !important;
    color: #fff !important;
}
.product-block + .product-block{
  margin-top:2rem;
  font-family: Arial, sans-serif;
}
.product-block-title{
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #0f1729;
    margin: 0 0 1.15rem;
}
.product-highlights-list li{
  display:flex;
  align-items:flex-start;
  gap:.75rem;
  color:#64748b;
  font-size:14px;
  line-height:1.7;
  margin-bottom: 5px !important;
}
.product-highlights-list li svg{
    margin-top: 5px;
}
.product-highlights-list li + li{
  margin-top:0;
  
}
.product-highlights-list i{
  color:#12ba89;
  font-size:1.15rem;
  margin-top:.18rem;
  flex-shrink:0;
}
.product-spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0; 
}

.product-spec-table th,
.product-spec-table td {
    padding: 14px 18px !important;
    border: none !important;
    font-size: 14px;
}

.product-spec-table th {
    width: 30%;
    font-weight: 600;
    color: #333;
    font-family: Plus Jakarta Sans, system-ui, sans-serif;
}

.product-spec-table td {
    color: #555;
font-family: Plus Jakarta Sans, system-ui, sans-serif;
}

.product-spec-table tr:nth-child(odd) td,
.product-spec-table tr:nth-child(odd) th {
    background-color: #f0f2f5 !important;
}

.product-spec-table tr:nth-child(even) td,
.product-spec-table tr:nth-child(even) th {
    background-color: #fff !important;
}


.product-spec-table tr {
    border-bottom: 1px solid #ddd;
}

.related-products-section{
  background:#eef2f5;
  padding:3.25rem 0 4.25rem;
}
.related-title{
  font-size:2.2rem;
  line-height:1.2;
  font-weight:800;
  color:#0f172a;
  margin:0 0 2rem;
}
.related-product-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 1px 2px rgba(15,23,42,.04);
  transition:transform .25s ease, box-shadow .25s ease;
  height:100%;
}
.related-product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 34px rgba(15,23,42,.08);
}
.related-product-image{
  aspect-ratio:4/3;
  background:#fff;
  overflow:hidden;
}
.related-product-body{
  padding:1.35rem 1.3rem 1.2rem;
}
.related-product-body h3{
  margin:0 0 .55rem;
  font-size:1.45rem;
  line-height:1.35;
  font-weight:800;
  color:#0f172a;
}
.related-product-body p{
  margin:0 0 .75rem;
  font-size:.95rem;
  line-height:1.65;
  color:#64748b;
}
.related-product-body span{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  color:#12ba89;
  font-size:.95rem;
  font-weight:700;
}

@media (min-width: 1200px) {
    .display-6 {
        font-size: 35px;
    }
}

.card-body{
    padding: 24px;
}

.cat-title{
    font-size: 16px;
}

.cat-description p{
    font-size: 12px;
}

.container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}


/* EV Division Section CSS */
.ev-section {
    padding: 80px 0;
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid Layout */
.ev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Label */
.ev-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #12ba87;
    margin-bottom: 12px;
}

/* Heading */
.ev-title {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

/* Description */
.ev-description {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    max-width: 550px;
}

/* Feature Grid */
.ev-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    transition: 0.3s ease;
}

.feature-item:hover {
    background: rgba(22, 163, 74, 0.08);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #12ba87;
    flex-shrink: 0;
}

/* Button */
.ev-btn {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 30px;
    background: #12ba87;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.ev-btn:hover {
    background: #15803d;
}

/* Image */
.ev-image img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .ev-grid {
        grid-template-columns: 1fr;
    }

    .ev-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .ev-features {
        grid-template-columns: 1fr;
    }

    .ev-title {
        font-size: 28px;
    }
}


/* Global Reach */
.ocl-global-section {
    padding: 80px 0;
    background: #f8fafc;
}

.ocl-global-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.ocl-global-header {
    max-width: 770px;
    margin-bottom: 40px;
}

.ocl-global-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.ocl-global-bar {
    width: 6px;
    height: 24px;
    background: #12ba87;
    border-radius: 3px;
}

.ocl-global-label p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #12ba87;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ocl-global-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

/* Main Card */
.ocl-global-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Map Area */
.ocl-global-map img {
    width: 100%;
    display: block;
}

/* Country Tags */
.ocl-country-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 25px;
}

.ocl-country-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50px;
    background: #f1f9f6;
    border: 1px solid #e5e7eb;
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
}

.ocl-country-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #12ba87;
}

/* About Panel */
.ocl-about-panel {
    border-left: 1px solid #e5e7eb;
    padding-left: 30px;
}

.ocl-about-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.ocl-globe-icon {
    font-size: 18px;
}

.ocl-about-head p {
    margin: 0;
    color: #12ba87 !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0 !important;
}

.ocl-about-panel p {
    font-size: 14px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .ocl-global-card {
        grid-template-columns: 1fr;
    }

    .ocl-about-panel {
        border-left: none;
        border-top: 1px solid #e5e7eb;
        padding-left: 0;
        padding-top: 25px;
    }

    .ocl-global-title {
        font-size: 38px;
    }
}

@media (max-width: 576px) {
    .ocl-global-title {
        font-size: 30px;
    }

    .ocl-global-card {
        padding: 25px;
    }
}

/* Facility Section */
.ocl-facility-section{
    padding:80px 0;
    background:#fff;
}

/* Header */
.ocl-facility-header{
    text-align:center;
    margin-bottom:60px;
}

.ocl-facility-subtitle{
    color:#12ba87;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    font-weight:700;
    margin-bottom:10px;
}

.ocl-facility-title{
    font-size:46px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
}

.ocl-facility-desc{
    max-width:600px;
    margin:auto;
    color:#6b7280;
    font-size:16px;
}

/* Grid */
.ocl-facility-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */
.ocl-facility-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #e5e7eb;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    transition:.3s;
}

.ocl-facility-card:hover{
    transform:translateY(-5px);
}

/* Image */
.ocl-facility-image{
    position:relative;
    overflow:hidden;
}

.ocl-facility-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

/* Upcoming Badge */
.ocl-facility-badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#12ba87;
    color:#fff;
    padding:6px 12px;
    border-radius:20px;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
}

/* Content */
.ocl-facility-content{
    padding:25px;
}

.ocl-facility-location{
    display:block;
    color:#12ba87;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.ocl-facility-content h3{
    font-size:22px;
    color:#111827;
    margin-bottom:12px;
}

.ocl-facility-content p{
    color:#6b7280;
    line-height:1.7;
    font-size:14px;
}

/* Footer Line */
.ocl-facility-type{
    margin-top:20px;
    padding-top:15px;
    border-top:1px solid #e5e7eb;
    color:#12ba87;
    font-size:13px;
    font-weight:600;
}

/* Bottom Link */
.ocl-facility-footer{
    text-align:center;
    margin-top:40px;
}

.ocl-facility-footer a{
    color:#12ba87;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.ocl-facility-footer a:hover{
    letter-spacing:.5px;
}

/* Responsive */
@media(max-width:992px){

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

    .ocl-facility-title{
        font-size:38px;
    }
}

@media(max-width:768px){

    .ocl-facility-grid{
        grid-template-columns:1fr;
    }

    .ocl-facility-title{
        font-size:30px;
    }

    .ocl-facility-section{
        padding:60px 0;
    }
}



/* Certification Section */
.ocl-cert-section{
    padding:80px 0;
    background:#f8fafc;
}


/* Header */
.ocl-cert-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

.ocl-cert-subtitle{
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#12ba87;
    margin-bottom:10px;
}

.ocl-cert-title{
    font-size:36px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
}

.ocl-cert-description{
    color:#6b7280;
    line-height:1.7;
}

/* Cards */
.ocl-cert-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    border:1px solid #e5e7eb;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    margin-bottom:25px;
}

/* Card Header */
.ocl-cert-card-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.ocl-cert-icon{
    width:50px;
    height:50px;
    border-radius:12px;
    background:#dcfce7;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.ocl-cert-label{
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #12ba87;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 5px;
}

.ocl-cert-card-header h3{
    margin: 0;
    font-size: 20px;
    color: #111827;
    font-weight: 700;
}

/* Certification Grid */
.ocl-cert-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

/* Certification Item */
.ocl-cert-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:12px 15px;
    background:#f9fafb;
    border:1px solid #e5e7eb;
    border-radius:10px;
    font-size:12px;
    font-weight:500;
    color:#0f1729d9;
    line-height:1.5;
    transition:.3s;
}

.ocl-cert-item:hover{
    border-color:#12ba87;
    background:#f0fdf4;
}

/* Responsive */
@media(max-width:768px){

    .ocl-cert-grid{
        grid-template-columns:1fr;
    }

    .ocl-cert-title{
        font-size:30px;
    }

    .ocl-cert-card{
        padding:20px;
    }
}

@media(max-width:480px){

    .ocl-cert-section{
        padding:60px 0;
    }

    .ocl-cert-title{
        font-size:24px;
    }

    .ocl-cert-card-header{
        align-items:flex-start;
    }
}

.footer-bg{
    background-color: #325767;

}

 /* ===========================
   JOURNEY SECTION
=========================== */

.journey-section {
    padding: 50px 0;
    background: #f1f9f6;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: auto;
}

/* Heading */

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

.section-tag {
    font-size: 12px;
    font-weight: 700;
    color: #12ba87;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0px;
}

.section-header h2 {
    font-size: 33px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    font-family: Plus Jakarta Sans, system-ui, sans-serif;
}

.section-desc {
    max-width: 100%;
    margin: 10px auto 0;
    color: #6b7280;
}

/* Wrapper */

.journey-wrapper {
    background: #fff;
    border: 1px solid #FFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

/* Top */

.journey-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 30px;
}

.snapshot-label {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    font-family: Plus Jakarta Sans, system-ui, sans-serif;
    margin-bottom: 0px;
}

.journey-top h3 {
    margin-top: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #0f1729;
    font-family: Plus Jakarta Sans, system-ui, sans-serif;
    margin-bottom: 0;
}

.milestone-badge {
    padding: 10px 18px;
    border-radius: 50px;
    background: #12ba871a;
    border: 1px solid #12ba871a;
    color: #12ba87;
    font-weight: 700;
}

/* Grid */

.journey-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}

/* Card */

.journey-card {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    transition: .3s;
}

.journey-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.journey-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.journey-card:hover img {
    transform: scale(1.08);
}

.journey-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.15),
        transparent
    );
}

/* Number */

.card-number {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;

    background: #12ba87;
    color: #fff;

    width: 32px;
    height: 32px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 700;
}

/* Year */

.card-year {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;

    background: #fff;
    color: #12ba87;

    padding: 5px 12px;
    border-radius: 20px;

    font-size: 12px;
    font-weight: 700;
}

/* Content */

.journey-content {
    padding: 18px;
}

.journey-content h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #000;
    font-family: Plus Jakarta Sans, system-ui, sans-serif;
    margin-top: 0;
}

.journey-content p {
    font-size: 13px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Progress */

.progress {
    margin-top: 15px;
    height: 5px;
    background: #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #12ba87;
    border-radius: 20px;
}

/* Responsive */

@media(max-width:1200px){

    .journey-grid{
        grid-template-columns: repeat(4,1fr);
    }
}

@media(max-width:992px){

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

    .journey-top{
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header h2{
        font-size:33px;
    }
}

@media(max-width:576px){

    .journey-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:30px;
    }

    .journey-wrapper{
        padding:20px;
    }
}


/* ===========================
   BACKWARD INTEGRATION
=========================== */

.integration-section {
    padding: 0;
    background: #f8fafc;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: auto;
}

/* Heading */

.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 20px;
}

.section-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #12ba87;
    margin-bottom: 0px;
}

.section-header h2 {
    font-size: 33px;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

.section-desc {
    margin-top: 10px;
    color: #6b7280;
    line-height: 1.8;
    font-size: 16px;
}

/* Strengths */

.strengths-section {
    margin-bottom: 70px;
}

.strengths-section h3 {
    text-align: center;
    font-size: 29px;
    margin-bottom: 40px;
    color: #111827;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.strength-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all .3s ease;
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,.08);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #12ba871a;
    color: #12ba87;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.strength-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
    line-height: 1.4;
}

.strength-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
}

/* Benefits */

.benefits-box {
    background-image: linear-gradient(to bottom right, #12ba871a, #ffffff, #ffffff);
    border: 1px solid #12ba8733;
    border-radius: 24px;
    padding: 50px;
}

.benefits-box h3 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 32px;
    color: #111827;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.benefit-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive */

@media(max-width:1200px){

    .strength-grid{
        grid-template-columns: repeat(3,1fr);
    }

    .benefits-grid{
        grid-template-columns: repeat(3,1fr);
    }
}

@media(max-width:992px){

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

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

    .section-header h2{
        font-size:33px;
    }
}

@media(max-width:768px){

    .strength-grid,
    .benefits-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:30px;
    }

    .benefits-box{
        padding:30px 20px;
    }
}



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

.hero-slider {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    background: #0f172a;
}

.slide {
    position: relative;
    min-height: 700px;
}

.slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Gradient Overlay */

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,hsl(198 35% 30% / .85) , hsl(198 35% 30% / .55) , hsl(198 35% 30% / .1));
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 750px;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Badge */

.hero-badge {
    display: inline-block;
    width: fit-content;
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid #12ba8766;
    background: #12ba8766;
    color: #12ba87;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* Heading */

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: #12ba87;
}

.hero-content p {
    color: rgba(255,255,255,.85);
    font-size: 18px;
    line-height: 1.8;
    max-width: 650px;
}

/* Buttons */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}

.btn-primary {
    padding: 14px 30px;
    background: #12ba87;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-primary:hover {
    background: #e65c00;
}

.btn-outline {
    padding: 14px 30px;
    border: 1px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.05);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-outline:hover {
    background: rgba(255,255,255,.12);
}

/* Arrows */

.slider-btn {
    position: absolute;
    top: 50%;
    padding:0px !important;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;

    background: rgba(255,255,255,.12);
    color: white;
    font-size: 22px;
    backdrop-filter: blur(10px);

    transition: .3s;
}

.slider-btn:hover {
    background: #12ba87;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Dots */

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 20px;
    height: 6px;
    border-radius: 10px;
    background: rgba(255,255,255,.4);
    transition: .3s;
}

.dot.active {
    width: 45px;
    background: #12ba87;
}

/* Responsive */

@media (max-width: 992px) {

    .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {

    .hero-slider,
    .slide {
        min-height: 600px;
    }

    .hero-content {
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 35px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        text-align: center;
    }
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.8s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}