/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    background: none;
    padding: 0;
    padding-top: 50px;
    width: 100%;
    margin: 0;
}

.hero .row {
    margin: 0;
    width: 100%;
}


.hero-content {
    background-color: #2B3990;
    height: 100%;
    width: 100%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.hero-image {
    height: 100%;
    width: 100%;
    min-height: 50vh;
    display: block;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Global Styles */
:root {
    --primary-color: #2B3990;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --dark-bg: #1f2937;
    --font-family: 'Times New Roman', Times, serif;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
}

/* Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    width: 185px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding: 0 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(43, 57, 144, 0.2);
    transition: all 0.3s ease;
}

.section-title:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(43, 57, 144, 0.3);
}



@media (max-width: 991px) {

    .section-header {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {

    .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.2rem;
        height: 48px;
        padding: 0 1.2rem;
    }
    .section-header {
        margin-bottom: 1.8rem;
    }
}

/* Navigation */
.navbar {
    background-color: white;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 150px;
    width: auto;
}

.navbar-nav {
    gap: 1.5rem;
}

.nav-link {

    font-size: 1.2rem;
    position: relative;
}

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

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

/* Why Choose Us Section */
.why-choose-us .section-title {
    width: 350px;
}

/* Products Section */
.products .section-title {
    width: 145px;
}

.products {
    background-color: white;
}



.product-content {
    flex: 1;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 1rem;
}

.product-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.product-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin: 0 0 1.5rem 0;
    text-align: justify;
    padding: 0 1rem;
}

.product-description .short-text,
.product-description .full-text {
    display: block;
    transition: all 0.3s ease;
}

.product-description .full-text {
    display: none;
    opacity: 0;
    transform: translateY(-20px);
}

.product-description.expanded .short-text {
    display: none;
}

.product-description.expanded .full-text {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.read-more-btn {
    background: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.8rem 2.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.read-more-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.read-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .product-description {
        font-size: 1.1rem;
        padding: 0;
        margin-bottom: 1rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .product-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .read-more-btn {
        font-size: 1rem;
        padding: 0.6rem 2rem;
    }
}

@media (max-width: 576px) {
    .product-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .read-more-btn {
        padding: 0.5rem 1.8rem;
    }
}


.about-us .section-title {
    width: 235px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    font-size: 1.4rem;
}





@media (max-width: 768px) {
    .blog-post {
        padding: 1.5rem;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .post-text {
        font-size: 1rem;
    }
}

/* Product Videos Section */
.product-videos {
    /* position: relative; */
    padding: 0;
    margin-top: 120px;
}

.product-videos .section-header {
    position: absolute;
    top: -80px;
    left: 25%;
    transform: translateX(-50%);
    /* z-index: 1; */
}


.video-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 15px;
    background-color: var(--primary-color);
    padding: 50px 0;
}

.video-card {
    width: 350px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    background-color: #f3f4f6;
    margin-bottom: 1rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0.5rem 0;
}

@media (max-width: 1200px) {
    .video-grid {
        padding: 50px 30px;
    }
    
}

/* Footer */
.footer {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

.footer-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-info i {
    width: 20px;
    color: var(--primary-color);
    font-family: "Font Awesome 6 Free" !important;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}



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

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:nth-child(1) {
    background-color: #1877f2; /* Facebook */
}

.social-link:nth-child(2) {
    background-color: #ff0000; /* YouTube */
}

.social-link:nth-child(3) {
    background-color: #000000; /* TikTok */
}

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.social-link i {
    font-size: 1.2rem;
    font-family: "Font Awesome 6 Brands" !important;
}

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


    .feature-image {
        height: 480px;
    }

    .video-card {
        width: 300px;
    }
}

@media (max-width: 991px) {


    .products .section-title {
        width: 130px;
        font-size: 1.2rem;
    }
    .services .section-title {
        width: 110px;
        font-size: 1.2rem;
    }
    .blog .section-title {
        width: 130px;
        font-size: 1.2rem;
    }

    .feature-image {
        height: 400px;
    }
    .feature-item h3 {
        font-size: 1.2rem;
    }
    .feature-item p {
        font-size: 1.2rem;
    }
    .about-title {
        font-size: 2.2rem;
        text-align: center;
    }
    .about-text {
        font-size: 1.2rem;
        text-align: center;
    }
    .video-grid {
        flex-wrap: wrap;
    }
    .video-card {
        width: calc(50% - 15px);
    }
    .about-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-text {
        font-size: 1.2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content {
        min-height: 40vh;
        padding: 2rem;
    }
    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    .hero-subtitle h2 {
        font-size: 1rem;
    }

    .why-choose-us .section-title {
        width: 250px;
        font-size: 1.1rem;
    }
    .feature-image {
        height: 350px;
    }
    .feature-item h3 {
        font-size: 1.1rem;
    }
    .feature-item p {
        font-size: 1.2rem;
    }
    .about-title {
        font-size: 2rem;
    }
    .about-text {
        font-size: 1.2rem;
    }
    .product-videos {
        margin-top: 80px;
    }
    .product-videos .section-header {
        top: -72px;
        left: 35%;
    }
    .video-grid {
        flex-direction: column;
        padding: 30px 15px;
    }
    .video-card {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}


/* Override Bootstrap font-family */
.btn,
.form-control,
.nav-link,
h1, h2, h3, h4, h5, h6,
p,
a,
span,
div {
    font-family: var(--font-family) !important;
}

/* Navigation */
.navbar {
    box-shadow: none;
    padding: 0.5rem 0;
    background-color: white !important;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    font-weight: 600;
    color: var(--primary-color) !important;
    margin: 0 1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Hero Section */


.hero .container-fluid {
    padding: 0;
    margin: 0;
    width: 100%;
}


.hero .col-lg-6 {
    padding: 0;
}

.hero h1 {
    color: white;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 4px;
    text-align: center;
}

.hero-subtitle {
    background-color: white;
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    max-width: 100%;
}

.hero-subtitle h2 {
    color: #2B3990;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-image {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    object-position: center;
}

/* Features Section */


/* Specific section title sizes */


.why-choose-us .section-title {
    width: 350px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2B3990;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.why-choose-us .section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 313px;
    height: 29px;
    background-color: rgba(43, 57, 144, 0.1);
    z-index: -1;
}

.why-choose-us .section-header {
    margin-bottom: 2rem;
    position: relative;
}

.products .section-title {
    width: 185px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2B3990;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.services .section-title {
    width: 165px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2B3990;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.services .section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 89px;
    height: 29px;
    background-color: rgba(43, 57, 144, 0.1);
    z-index: -1;
}

.blog .section-title {
    width: 165px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2B3990;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}


.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    background-color: var(--primary-color);
}

.feature-card:hover .icon-box i {
    color: white;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    margin-bottom: 0;
}

/* About Section */
.about {
    background-color: var(--light-bg);
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.about-features {
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-feature-item i {
    font-size: 1.25rem;
    margin-right: 1rem;
}

/* Contact Section */
.contact {
    background-color: white;
    padding: 5rem 0;
}

.contact .section-header {
    margin-bottom: 3rem;
}

.contact-form {
    padding: 3rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

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

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(43, 57, 144, 0.1);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 2rem auto 0;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
    }
    
    .form-control {
        padding: 0.8rem 1rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin-top: 1.5rem;
    }
}

/* Footer */
.footer {
    background-color: white;
    padding: 4rem 0;
    border-top: 1px solid #1e40af;
}

.footer-brand {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}



.footer-info {
    margin-bottom: 2rem;
}

.footer-info p {
    margin-bottom: 0.8rem;
    /* display: flex; */
    align-items: flex-start;
    /* gap: 10px; */
    font-size: 1.2rem;
}

.footer-info i {
    width: 20px;
    color: var(--primary-color);
    font-family:  "Font Awesome 6 Free" !important;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:nth-child(1) {
    background-color: #1877f2; /* Facebook blue */
}

.social-link:nth-child(2) {
    background-color: #ff0000; /* YouTube red */
}

.social-link:nth-child(3) {
    background-color: #000000; /* TikTok black */
}

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.social-link i {
    font-size: 1.2rem;
    font-family: "Font Awesome 6 Brands" !important;
}

.footer h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}


.footer-links a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.2rem;
}



.footer-map {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 991px) {
    .footer {
        padding: 2rem 0;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-info {
        /* text-align: center; */
        margin-bottom: 2rem;
    }
    .footer-info p {
        
        font-size: 1.2rem;
    }
    .footer h3 {
        /* text-align: center; */
        font-size: 1.2rem;
    }

    .footer-links a {
        font-size: 1.1rem;
    }
    .social-links {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
        
    }

    .footer-map {
        margin-top: 2rem;
        min-height: 200px;
    }

    .navbar-brand img {
        height: 80px;
    }

    .footer-logo {
        height: 80px;
    }

 
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }

    .footer-logo {
        height: 70px;
    }

    .footer-info p {
        font-size: 1.2rem;
    }

    .footer h3 {
        font-size: 1.2rem;
    }

    .footer-links a {
        font-size: 1.1rem;
    }
}
@media (max-width: 576px) {
    .footer {
        padding: 1rem 0;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-info p {
        font-size: 1.2rem;
    }

    .footer h3 {
        font-size: 1.2rem;
    }

    .footer-links a {
        font-size: 1rem;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link i {
        font-size: 1rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    /* padding: 3rem 0; */
    background-color: white;
}

.why-choose-us .row {
    align-items: stretch;
}

.feature-image {
    width: 100%;
    height: 540px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-list {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    background-color: var(--primary-color);
    padding: 1.5rem;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    color: white;
    transition: none;
}

.feature-item:hover {
    transform: none;
    box-shadow: none;
}

.feature-item h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: white;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-content {
        margin-bottom: 2rem;
    }

    .about-images .main-image {
        height: 200px;
    }


    .feature-image {
        height: 300px;
        margin-bottom: 1rem;
    }
}

/* Products Section */

.products .section-header {
    margin-bottom: 3rem;
}

.product-item {
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.product-item:nth-child(even) {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1;
    height: 400px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    flex: 1;
    padding: 1.5rem;
    text-align: center;
}

.product-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.product-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.product-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 1rem 0;
    position: relative;
}

.product-description .full-text {
    display: none;
}

.product-description.expanded .short-text {
    display: none;
}

.product-description.expanded .full-text {
    display: inline;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 991px) {
    .product-item {
        flex-direction: column !important;
        gap: 1rem;
    }

    .product-image {
        height: 300px;
    }

    .product-content {
        padding: 1rem 0;
    }

    .product-content h3 {
        font-size: 1.5rem;
        text-align: center;
    }
}

/* Services Section */
.services {
    /* padding: 5rem 0; */
    background-color: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

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

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

.service-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    border-radius: 50%;
}

.service-image i {
    font-size: 2rem;
    color: var(--primary-color);
    font-family: 'Font Awesome 6 Free' !important;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-description {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

/* About Us Section */
.about-us {
    /* padding: 5rem 0; */
    background-color: white;
}



.about-content {
    padding-right: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
}

.about-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
    text-align: justify;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.about-images .main-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 1rem;
}

.about-images .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.sub-images img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0;
}

@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .about-title {
        font-size: 2rem;
        text-align: center;
    }

    .about-text {
        font-size: 1.2rem;
        text-align: center;
    }

    .about-images .main-image {
        height: 300px;
    }

    .sub-images img {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 3rem 0;
    }


    .about-images .main-image {
        height: 250px;
    }

    .sub-images img {
        height: 80px;
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .why-choose-us .section-title {
        width: 300px;
    }
    .about-content {
        padding-right: 1rem;
    }
    .hero-subtitle h2 {
        font-size: 1.1rem;
    }   

}
@media (min-width: 997px) {
    .hero-subtitle h2 {
        font-size: 1.1rem;
    }
}
@media (min-width: 1200px) {
    .hero-subtitle h2 {
        font-size: 2rem;
    }
}


@media (max-width: 991px) {
    .hero-content {
        min-height: 60vh;
        padding: 3rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }
    
    .hero-image {
        height: 40vh;
    }


    .why-choose-us .section-title {
        width: 280px;
        font-size: 1.2rem;
    }

    .products .section-title {
        width: 190px;
        font-size: 1.2rem;
    }

    .services .section-title {
        width: 150px;
        font-size: 1.2rem;
    }

    .blog .section-title {
        width: 150px;
        font-size: 1.2rem;
    }

    .about-us .section-title {
        width: 235px;
        height: 66px;
        font-size: 1.2rem;
    }

    .feature-image {
        height: 400px;
    }

    .feature-item h3 {
        font-size: 1.2rem;
    }

    .feature-item p {
        font-size: 1.2rem;
    }

    .about-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-text {
        font-size: 1.2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content {
        min-height: 40vh;
        padding: 2rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle h2 {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .why-choose-us .section-title {
        width: 250px;
        font-size: 1.1rem;
    }

    .feature-image {
        height: 350px;
    }

    .feature-item h3 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 1rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1.2rem;
    }

}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle h2 {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1rem;
        height: 66px;
    }

    .why-choose-us .section-title {
        width: 220px;
        font-size: 1rem;
    }

    .feature-item h3 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 1.2rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1.2rem;
    }

}

/* Section Divider */
.section-divider {
    width: 80%;
    margin: 3rem auto;
    border: none;
    border-top: 1px solid #1e40af;
    opacity: 0.5;
}

/* Blog Section */

.blog-post {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}


.product-videos .section-title {
    width: 275px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    margin: 0;
}





@media (max-width: 991px) {
    .video-grid {
        flex-wrap: wrap;
    }
    
    .video-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .product-videos {
        margin-top: 80px;
    }

    .product-videos .section-header {
        top: -72px;
        left: 35%;
    }


    .video-grid {
        flex-direction: column;
        padding: 30px 15px;
    }

    .video-card {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .video-wrapper {
        padding-bottom: 56.25%;
    }

    .product-videos .section-title {
        width: 250px;
        height: 66px;
        padding: 0.5rem 1.5rem;
        left: auto;
    }
}
@media (max-width: 576px)  {
    .product-videos .section-header {

       left: 32%;  /* padding: 0.5rem 1.5rem; */
    }
}
@media (max-width: 480px)  {
    .product-videos .section-header {
        left: 35%;
    }
}

/* Blog Section Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.blog-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.blog-post:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.blog-post .read-more-btn {
    font-size: 1rem;
    padding: 0.6rem 1.8rem;
}

.blog-post .full-text {
    display: none;
}

.blog-post .full-text h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 1.5rem 0 1rem;
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
    opacity: 1;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--primary-color);
}

.popup-title {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.popup-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

@media (max-width: 768px) {
    .popup-content {
        padding: 1.5rem;
        width: 95%;
    }
    
    .popup-title {
        font-size: 1.6rem;
    }
    
    .popup-text {
        font-size: 1rem;
    }
}

/* Product Videos Section */
.product-videos {
    position: relative;
    padding: 0;
    margin-top: 120px;
}



.video-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 0;
    background-color: var(--primary-color);
}

.video-card {
    width: 350px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    background-color: var(--light-bg);
    margin-bottom: 1rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    text-align: center;
    padding: 0.5rem 0;
}

/* Blog Section */
.blog-post {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.post-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.post-text {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
}


.post-text p {
    margin-bottom: 1.5rem;
}
.post-image {
    margin: 2rem 0;
    text-align: center;
}

.post-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: white;
}


.feature-image {
    width: 100%;
    height: 540px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    background-color: var(--primary-color);
    padding: 1.5rem;
    color: white;
}

.feature-item h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: var(--transition-base);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(43, 57, 144, 0.2);
    outline: none;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-base);
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}


@media (max-width: 991px) {
    .video-grid {
        flex-wrap: wrap;
    }
    
    .video-card {
        width: calc(50% - 15px);
    }
    
    .feature-image {
        height: 400px;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
    }
    
    .feature-item p {
        font-size: 1.2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-videos {
        margin-top: 80px;
    }

    .product-videos .section-header {
        top: -72px;
        left: 35%;
    }

    .video-grid {
        flex-direction: column;
        padding: 30px 15px;
    }

    .video-card {
        width: 100%;
    }
    
    .video-wrapper {
        padding-bottom: 56.25%;
    }
    
    .feature-image {
        height: 350px;
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .product-videos .section-header {
        left: 32%;
    }
    
    .feature-image {
        height: 300px;
    }
    
    .feature-item h3 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .product-videos .section-header {
        left: 35%;
    }
}
@media (max-width: 390px) {
    .product-videos .section-header {
        left: 35%;
    }
}
/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-description .full-text {
    display: none;
    opacity: 0;
    transform: translateY(-20px);
}

.product-description.expanded .short-text {
    display: none;
}

.product-description.expanded .full-text {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: slideDown 0.5s ease-out;
}
