* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #16a34a;
    --accent-color: #f59e0b;
    --dark-blue: #1e40af;
    --light-blue: #3b82f6;
    --green: #22c55e;
    --dark-green: #15803d;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* navbar start */

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 0rem 0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ecf9f8;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

.logo img {
    height: 65px;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--gray-700, #1f2937);
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Social Icons */
.nav-socials {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.nav-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0284c7;
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.nav-socials a:hover {
    background: #0369a1;
    transform: scale(1.1);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 998;
    pointer-events: none;
}

.nav-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.35s ease;
}


body.menu-open {
    overflow: hidden;
    touch-action: none;
}


.nav-menu li {
    width: 100%;
}

.nav-menu a {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-wrap-mode: nowrap;
    color: #1f2937;
    border-radius: 8px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.nav-menu a:hover {
    /* background: #f0f9ff; */
    background: #ffffff;
    color: #0284c7;
    transform: translateX(6px);
}


.nav-menu a.active {
    color: #0284c7;
    font-weight: 600;
}



/* navbar over */


/* hero section start */

.container {
    text-align: center;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.bg-video,
.bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1);
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    color: white;
    text-align: center;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateY(-50%, -50%);
    animation: slideUpCenter 1s ease-in forwards;
}

@keyframes slideUpCenter {
    0% {
        transform: translate(-50%, 100%);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 0.5rem;
    z-index: 3;
}

.nav.left {
    left: 10px;
}

.nav.right {
    right: 10px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.slide.active .bg-image {
    animation: zoomIn 7s ease-in-out forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}


/* hero section over */


/* main section start */

.btn-read-more {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}


.btn-read-more:hover {
    background-color: #afafaf;
}

.section {
    padding: 4rem 1rem;
}

@keyframes fadeInSection {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section.light {
    background-color: #f3f4f6;
}


.section h2 {
    font-size: 2rem;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #aa1e2e;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
}

.card {
    background: #fff;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s;
    animation: fadeUpCard 0.8s ease-in-out;
}

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

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

.product-image {
    width: 280px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.product-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card h3 {
    font-size: 1.5rem;
    color: #051840;
    margin-bottom: 1rem;
}

.card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}


.learn-more {
    display: inline-block;
    padding: 10px 25px;
    margin-top: 30px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.learn-more:hover {
    background-color: #afafaf;
}

@keyframes fadeUpCard {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.features {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}


.features li {
    background: #ffffff;
    padding: 1rem 1.2rem;
    border-left: 5px solid #aa1e2e;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.features li:hover {
    background-color: #fff5f5;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    padding-top: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #aa1e2e;
    outline: none;
}

.contact-form button {
    background-color: #4a4546;
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.contact-form button:hover {
    background-color: #921826;
}

.swiper-wrapper {
    display: flex;

}


.swiper-slide img {
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s;
}

.swiper-slide img:hover {
    transform: scale(1.03);
}


/* main section over */


/* footer css start */

.footer {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: var(--white);
    padding: 3rem 1rem 2rem;
    font-family: 'Segoe UI', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #c2ffce;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    position: absolute;
    bottom: -6px;
    left: 0;
    border-radius: 2px;
}

.footer-section p {
    color: white;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--green);
    transform: translateX(6px);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.05);
    color: black;
}

.contact-info p {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.business-hours small {
    color: rgba(255, 255, 255, 0.65);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Animation for fade-in effect */
.footer-section {
    animation: fadeUp 0.8s ease-in-out both;
}

.footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-section:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-links {
        justify-content: flex-start;
    }
}

/* footer css over */

/* back-to-top start*/

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.6);
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.05);
}


/* back-to-top Over*/




/* responsive media query start */

@media (max-width: 880px) {

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100dvh;
        width: clamp(260px, 70vw, 380px);
        margin-top: 81px;
        padding: 30px 24px 24px;
        background: #ecf9f8;
        box-shadow: -20px 0 40px rgba(0, 0, 0, .15);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        transform: translateX(100%);
        transition: transform .3s ease;
        z-index: 999;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }

    .nav-menu.active {
        transform: translateX(0);
    }
}

@media (max-width: 661px) {
    .nav-menu {
        margin-top: 64px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 75%;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }
}

@media (max-width: 660px) {
    .logo img {
        height: 48px;
    }

    .nav-container {
        padding: 0px 1rem;
    }

}

html {
    scroll-behavior: smooth;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

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


@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Loading animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

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


/* About Page Header */

html {
    scroll-behavior: smooth;
}


.page-header {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 50%, #bbe1fa 100%);
    display: flex;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    justify-content: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.page-header-content {
    text-align: center;
    color: white;
    z-index: 10;
    position: relative;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.company-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    background: linear-gradient(45deg, #ffe66d, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

@keyframes shimmer {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

.page-header p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


.scroll-indicator {
    position: absolute;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .stats-container {
        gap: 1.5rem;
    }

    .stat-item {
        min-width: 120px;
        padding: 1rem;
    }

    .page-header {
        min-height: 60vh;
    }
}


/* Main Content of about page start */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

/* Story Section */
.story-section {
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-text p {
    color: var(--gray-700);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-visual {
    position: relative;
    padding: 2rem;
}

.mission-card {
    background: var(--gradient);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transform: rotate(-5deg);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mission-card p {
    opacity: 0.9;
}

/* Values Section */
.values-section {
    background: var(--gray-100);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray-700);
}

/* Team Section css start */

.statement-title {
    font-size: 1.3rem;
    color: #2c3e50b8;
    font-weight: 500;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 15px;
}


.leader-card {
    display: flex;
    flex-wrap: wrap;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    align-items: center;
}

.leader-image {
    flex: 1 1 250px;
    text-align: center;
    margin-bottom: 20px;
}

.leader-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ddd;
}

.leader-details {
    flex: 2 1 400px;
    padding: 0 20px;
}

.leader-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.leader-title {
    font-size: 1.2rem;
    color: #2c3e50b8;
    font-weight: 500;
    margin-bottom: 15px;
}

.leader-Education {
    font-size: 1.2rem;
    margin-top: 3rem;
    text-align: left;
    color: #2c3e50b8;
    font-weight: 500;
    margin-bottom: 15px;

}

.leader-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .leader-card {
        flex-direction: column;
        text-align: center;
    }

    .leader-details {
        padding: 0;
    }

    .leader-image img {
        width: 180px;
        height: 180px;
    }

    .leader-image {
        align-content: center;
    }
}

/* Team Section css over */



/* Timeline Section */
.timeline-section {
    background: var(--gray-100);
    padding: 3rem 1rem;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Central vertical line */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--gradient);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--gradient);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    background: inherit;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 18px;
    height: 18px;
    background: var(--secondary-color);
    border: 3px solid var(--white);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(odd)::after {
    right: 3px;
}


.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item:nth-child(even)::after {
    left: 0px;
}

@media (max-width: 768px) {
    .timeline-item:nth-child(even)::after {
        left: 20px;
    }
}


.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content .year {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--gray-700);
    line-height: 1.6;
}


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

    .page-header h1 {
        font-size: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 25px;
        text-align: left !important;
    }

    .timeline-item::after {
        left: 20px;
        transform: translateX(0);
    }

    .timeline-item:nth-child(even) {
        left: 0%;
    }
}

/* Main Content of about page start */


/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.section.contact {
    margin-top: 100px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form button {
    background: var(--gradient);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}


/* Projects Gallery */

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.project-item {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.project-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(50%);
    transition: transform 0.3s ease;
}


.project-overlay h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.project-overlay p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}


/* Statistics Section */
.stats-section {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa, white);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(2) .stat-number {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(3) .stat-number {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 500;
}

/* View All Projects Button */

.view-all-btn {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}


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

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .projects-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-section {
        padding: 30px 20px;
        margin-top: 40px;
    }
}

/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.project-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.project-item:nth-child(1) {
    animation-delay: 0.1s;
}

.project-item:nth-child(2) {
    animation-delay: 0.2s;
}

.project-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.5s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}


/* why choose us section start */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.feature-icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}


.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #f0f4f8, #cfd8dc);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #e8f5e9, #a5d6a7);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #fff9e6, #ffe082);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #f3e5f5, #ce93d8);
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #e3f2fd, #90caf9);
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #e0f7fa, #80deea);
}


.feature-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #007bff;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

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

    .feature-card {
        padding: 30px 25px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

}

.feature-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

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



/* why choose us section Over */


/*  Project page start */
.header {
    text-align: center;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem 2rem;
    margin-top: 90px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 1s ease-out;
}

.header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease infinite;
}

.header p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-label {
    color: #666;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.project-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.project-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 4s ease-in-out infinite;
}

.project-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.project-category {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-content {
    padding: 2rem;
}

.project-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.project-details {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid #dee2e6;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    gap: 1rem;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-label {
    font-weight: 600;
    color: #495057;
    min-width: 80px;
    flex-shrink: 0;
}

.detail-value {
    color: #6c757d;
    text-align: right;
    font-weight: 500;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tech-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.tech-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.project-features {
    margin-bottom: 2rem;
}

.features-title {
    font-weight: 700;
    color: #495057;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.features-title::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('../assets/images/features-title.png') no-repeat center;
    background-size: contain;
    margin-right: 0.75rem;
    font-size: 1.2rem;
    vertical-align: middle;
}


.features-list {
    list-style: none;
}

.features-list li {
    padding: 0.5rem 0;
    color: #6c757d;
    text-align: start;
    position: relative;
    padding-left: 2rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: #28a745;
    font-weight: bold;
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.project-status {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #c3e6cb;
    box-shadow: 0 4px 12px rgba(21, 87, 36, 0.1);
}

.project-status::before {
    content: '✅';
    margin-right: 0.5rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(200%) rotate(45deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .header {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-header {
        padding: 1.5rem;
    }

    .project-technologies {
        gap: 0.5rem;
    }

    .tech-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-card {
        margin: 0 5px;
    }

    .project-content {
        padding: 1.25rem;
    }

    .project-details {
        padding: 1.25rem;
    }

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        text-align: left;
    }

    .detail-value {
        text-align: left;
    }

    .tech-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 360px) {
    .header {
        padding: 1.5rem 1rem;
    }

    .project-header {
        padding: 1.25rem;
    }

    .project-content {
        padding: 1rem;
    }

    .project-details {
        padding: 1rem;
    }
}

@media (min-width: 1400px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    }
}

@media print {
    body {
        background: white;
    }

    .project-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

@media (prefers-color-scheme: dark) {
    .header p {
        color: #777;
    }

    .stat-label {
        color: #888;
    }

    .project-description {
        color: #888;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.project-card:focus-within {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

.tech-tag:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}


/*  Project page over */


/* prodcuts page css start */

.products-section {
    padding: 5rem 2rem;
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.product-card img {
    /* width: 100%; */
    height: 300px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.product-content p {
    color: var(--gray-700);
    margin-bottom: 1rem;
}


.toggle-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background .3s ease;
}

.toggle-btn:hover {
    background: var(--accent-color);
}

.product-specs {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    margin-top: 1rem;
}

.product-specs table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs td {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.product-specs tr:nth-child(even) {
    background: #f9f9f9;
}

.product-card.open .product-specs {
    max-height: 500px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

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



/* prodcuts page css over */


/* smart-pole page css start */

.smartpole-page {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1f2937;
}

/* Hero */

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

.smartpole-hero {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: #fff;
    padding: clamp(2rem, 6vw, 5rem) 1rem;
    overflow: hidden;
}

.smartpole-hero .hero-content-smart {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    animation: fadeUp 1s ease-out;
}

.smartpole-hero .hero-text {
    grid-column: 1 / span 6;
    text-align: left;
    z-index: 2;
    margin-top: 30px;
}

.smartpole-hero .hero-image {
    grid-column: 7 / span 6;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.smartpole-hero .hero-image img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: 500px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.smartpole-hero .hero-image img:hover {
    transform: scale(1.03);
}

.smartpole-hero .hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: .75rem;
}

.smartpole-hero .hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 4rem;
}

.smartpole-hero .btn-primary {
    background: #ffb703;
    color: #1f2937;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.smartpole-hero .btn-primary:hover {
    background: #fb8500;
    color: #fff;
    transform: translateY(-3px);
}

/* Overview */
.smartpole-overview .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
}

.overview-content h2 {
    margin-bottom: 1rem;

}

.smartpole-overview img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.spec-card {
    background: #f8f9fa;
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    margin: 0.5rem 0;
}

.details-list li strong {
    color: #0077b6;
}

.note {
    margin-top: 1rem;
    font-style: italic;
    color: #444;
}

.smartpole-features {
    background: var(--gray-100);
}

.smartpole-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}


.smartpole-features .feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.smartpole-features .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.smartpole-features .feature-card img {
    height: 100px;
    margin-bottom: 1rem;
}

/* Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.adv-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.adv-card h3 {
    color: #0077b6;
    margin-bottom: 0.5rem;
}

/* Animations */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

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

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

@media (max-width: 992px) {
    .smartpole-hero .hero-content-smart {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .smartpole-hero .hero-text {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }

    .smartpole-hero .btn-primary {
        margin: 0 auto;
    }

    .smartpole-hero .hero-image {
        grid-column: 1 / -1;
        order: -1;
        margin-bottom: 1rem;
        margin-top: 30px;
    }

    .smartpole-hero .hero-image img {
        max-width: 70%;
    }

    .smartpole-overview img {
        max-width: 60%;
    }
}

@media (max-width: 576px) {
    .smartpole-hero .hero-image {
        display: none;
    }

    .smartpole-hero {
        padding: 2rem 1rem;
    }

    .smartpole-overview img {
        max-width: 100%;
    }

    .smartpole-hero .hero-title {
        font-size: clamp(2rem, 5vw, 3.2rem);
        font-weight: 700;
        margin-bottom: 1rem;
        margin-top: 2rem;
    }

    .smartpole-hero .hero-subtitle {
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

}


/* smart-pole page css over */