/* assets/css/main.css */
/* Shop button */
.btn-shop {
    border: 2px solid rgb(117, 197, 251);
    padding: 10px 10px !important;
    background-color: #30aee3  !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 40px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 13px !important;
}

.btn-shop:hover {
    background: none !important;
    background-color: #30aee3 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.menu li .cart-icon-mobile a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: none;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}



/* ===== Base Styles ===== */
:root {
    --primary-blue: #0a3d62;
    --secondary-blue: #1e88e5;
    --accent-blue: #4fc3f7;
    --dark-blue: #082f49;
    --light-blue: #e3f2fd;
    --gray: #666666;
    --light-gray: #f8fafc;
    --white: #ffffff;
    --black: #000000;

}

/* @media (min-width: 1100px) {
  .container {
    max-width: 1400px !important;
  }
} */

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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #d70707;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 10px 0;
}

/* ===== Top Bar Styles ===== */

/* ===== Main Header Adjustments ===== */


.navbar {
    position: sticky;
    top: 62px;
    /* Height of top bar */
    z-index: 1000;
}

/* Adjust main content margin for fixed headers */
main {
    margin-top: 0px;
    background-color: #d6ebf4;
}

@media (max-width: 768px) {
    .navbar {
        top: 50px;
    }

    main {
        /* margin-top: 50px; */
    }
}

/* ===== JavaScript for Interactive Elements ===== */
/* Cart counter animation */
@keyframes bounce {

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

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

.cart-count.added {
    animation: bounce 0.3s ease;
}

/* Share dropdown styles */
.share-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 15px;
    min-width: 200px;
    display: none;
    z-index: 1001;
}

.share-dropdown.active {
    display: block;
}

.share-dropdown h4 {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 10px;
    text-align: center;
}

.share-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.share-icons a:hover {
    transform: translateY(-3px);
}

.facebook {
    background: #3b5998;
}

.twitter {
    background: #1da1f2;
}

.linkedin {
    background: #0077b5;
}

.whatsapp {
    background: #25d366;
}


/* ===== Navigation ===== */
.navbar {
    background: #cbefff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0px;
    position: relative;
}

.logo img {
    max-width: 100%;
    height: auto;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    border: 1px solid black;
    background-color: var(--accent-blue);
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    /* background: transparent; */
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Navigation Menu */
.nav {
    display: flex;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.menu li a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.menu li a:hover {
    color: #007db5;
}

.menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}


.menu li a:hover::after {
    width: 100%;
}
.menu li:last-child a::after {
    display: none;
}

/* ===== Hero Section ===== */

.hero {
    background:
        linear-gradient(rgba(0, 60, 120, 0.6), rgba(0, 60, 120, 0.6)),
        /* url('./images/hero-bg.jpg'); */
        url('./images/Web_Banner/Web-Banner__01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}


.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-graphic {
    flex: 1;
    position: relative;
}

.c-shape-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.c-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px dashed var(--secondary-blue);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-image-circle {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     
}



.hero-image-circle img {
    margin-top:55px;
    width: 100%;
    max-width: 400px; 
    object-fit: cover;
}

.hero-text {
    flex: 1;
}

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.company-name span {
    color: var(--black);
}

.brand-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.tagline {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
}


/* button */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #007db5;
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #005f8a;
    transform: translateY(-3px);
}

.btn-outline {
    background-color: var(--white);
    border: 2px solid #007db5;
    color: #007db5;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #007db5;
    color: #fff;
}

@media (max-width: 768px) {

    .hero-buttons {
        justify-content: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-outline {
        padding: 8px 18px;
        font-size: 14px;
        border-radius: 4px;
    }

}





/* ===== About Section ===== */
.text-center h2 {
    color: var(--white);
    margin-bottom: 40px;
}

.about-header-wrapper {
    display: inline-block;
    /* margin-bottom: 20px; */
}

.about-title {
    display: inline-flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    gap: 10px;
}

.blue-line {
    display: inline-block;
    width: 44px;
    height: 9px;
    background: var(--secondary-blue);
}

.left-title .blue-line {
    order: -1;
}

.right-title .blue-line {
    order: 1;
}

.custom-para {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    text-align: justify;
}

/* ===== Leadership Section ===== */
.section-title {
    background: linear-gradient(90deg, transparent, #27aae1, transparent);
    padding: 4px 0px;
}

.leader-profile-img {
    width: 350px;
    height: 350px;
    margin: 0 auto;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.leader-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-name {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.leader-role {
    font-size: 1.1rem;
    color: var(--secondary-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.quote-container {
    position: relative;
    padding: 25px;
    background: var(--light-blue);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-blue);
}

.quote-mark {
    font-size: 3rem;
    color: var(--secondary-blue);
    font-family: Georgia, serif;
    line-height: 1;
}

.start-quote {
    position: absolute;
    top: 10px;
    left: 20px;
}

.end-quote {
    display: inline-block;
    margin-left: 10px;
    vertical-align: bottom;
}

.quote-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    padding: 0 10px;
}

.leader-img-square {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.leader-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
}

.dashed-separator {
    border: none;
    border-top: 2px dashed var(--secondary-blue);
    margin: 40px auto;
    opacity: 0.5;
}

/* ===== Service & Support Section ===== */
/* .service-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.service-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--secondary-blue);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
} */

.service-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    text-align: justify;
}

.image-wrapper {
    position: relative;
    padding: 20px;
}

.frame-accent {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 6px solid var(--secondary-blue);
}

.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.main-service-img,
.main-vission-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Vision & Mission Section ===== */
.vision-header-wrapper {
    display: inline-block;
    margin-bottom: 20px;
}

.vision-title {
    display: inline-flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    gap: 10px;
}

.text-color {
    color: var(--gray);
}

.vision-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    text-align: justify;
}
.text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    text-align: center;
}

.mission-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--secondary-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== Products Section ===== */


/* ===== Products Section ===== */
.product-header {
    position: relative;
    margin-bottom: 40px;
}

.product-category-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    background: #d6ebf4;
}

.category-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-blue), transparent);
    margin: -15px auto 0;
    max-width: 400px;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--primary-blue));
}

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

.catv-card::before {
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(31, 136, 229, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--secondary-blue);
}

.catv-card .product-icon {
    background: linear-gradient(135deg, #fff5f5 0%, rgba(238, 90, 36, 0.1) 100%);
    color: #ee5a24;
}

.product-subtitle {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.catv-card .product-subtitle {
    color: #333;
}

.product-list li a {
    text-decoration: none;
    color: #333;
    display: block;
    transition: 0.3s;
}

.product-list li a:hover {
    color: #007bff;
    padding-left: 5px;
}

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

.product-list li {
    padding: 8px 0;
    color: var(--gray);
    position: relative;
    padding-left: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.product-list li:last-child {
    border-bottom: none;
}

.product-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: bold;
}

.catv-card .product-list li::before {
    color: #ee5a24;
}

/* GIL Section */
.gil-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-blue), transparent);
    margin: -15px auto 0;
    max-width: 640px;
}

/* Call to Action */
.cta-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 40px;
    border-radius: 15px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(10, 61, 98, 0.2);
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 12px 35px;
    background: var(--secondary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-blue);
}

.cta-button:hover {
    background: transparent;
    color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== Responsive Design for Products ===== */
@media (max-width: 768px) {
    .product-category-title {
        font-size: 1.6rem;
    }

    .product-card {
        padding: 25px 20px;
    }

    .product-subtitle {
        font-size: 1.2rem;
    }

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

    .cta-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .product-category-title {
        font-size: 1.4rem;
    }

    .product-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 1.4rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

/* Hover effects for mobile */
@media (hover: hover) {
    .product-card:hover .product-icon {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }
}





/* .title-divider {
    width: 80px;
    height: 4px;
    background: var(--secondary-blue);
    margin: 15px auto 30px;
    border: none;
}

.hexagon-container {
    position: relative;
    height: 300px;
    margin: 0 auto 40px;
}

.hex {
    position: absolute;
    width: 90px;
    height: 105px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

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

.hex-1 { top: 0; left: 50%; transform: translateX(-50%); }
.hex-2 { top: 30%; right: 10%; }
.hex-3 { top: 60%; right: 20%; }
.hex-4 { top: 60%; left: 20%; }

.isp-stepper {
    padding: 20px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-blue);
    border-radius: 8px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content li {
    padding: 3px 0;
    color: var(--gray);
} */

/* ===== Nationwide Section ===== */
.title-1 {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.title-2 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 30px;
}

.title-2 hr {
    width: 80px;
    margin: 10px auto;
    border: 2px solid var(--secondary-blue);
}

.nationwide-img {
    margin-top: 10px;
    max-width: 600px ;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== GIL Section ===== */
.gil-card {
    background: var(--white);
    border-radius: 10px;
    padding: 13px 13px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.gil-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--primary-blue));
}

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

.gil-card .img-fluid {
    height: 100%;
}

.gil-card-core-businesses .img-fluid {
    height: 300px;
    /* height: 00px; */
}


/* ===== Footer ===== */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 50px 0 25px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand span {
    color: var(--accent-blue);
}

.footer-desc {
    color: #b3d9ff;
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--secondary-blue);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-blue);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b3d9ff;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #b3d9ff;
}

.footer-contact i {
    color: var(--accent-blue);
    margin-top: 4px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.copyright {
    color: #8ca3c7;
    font-size: 0.9rem;
}

.partner-logos {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logos a {
    display: block;
    padding: 8px;
    background: #fff;
    border-radius: 8px;
    transition: 0.3s;
}

.partner-logos img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s;
}

.partner-logos a:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}


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

/* Large Tablets (768px - 1024px) */
@media (max-width: 1024px) {

    /* Hero Section */
    .hero-wrapper {
        gap: 40px;
    }

    .company-name {
        font-size: 2.2rem;
    }

    .brand-title {
        font-size: 1.6rem;
    }

    /* Leadership */
    .leader-profile-img {
        width: 180px;
        height: 180px;
    }

    .leader-name {
        font-size: 1.6rem;
    }

    .leader-img-square {
        max-width: 180px;
    }

    /* Products */
    .hexagon-container {
        height: 280px;
    }

    .hex {
        width: 80px;
        height: 95px;
    }

    /* Sections */
    .section {
        padding: 50px 0;
    }

    .section-title,
    .service-title {
        font-size: 1.8rem;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .btn-shop{
        margin-top: 10px;

    } 
    .nationwide-img {
        margin-top: 10px;
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Navigation - Tablet */
    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 55px;
        left: 0;
        width: 100%;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .menu li {
        width: 100%;
    }

    .menu li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu li:last-child a {
        border-bottom: none;
    }

    /* Hero Section - Tablet */
    .hero {
        padding: 60px 0;
    }

    .hero-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .hero-graphic {
        order: 2;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-text {
        order: 1;
    }

    .company-name {
        font-size: 2rem;
    }

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

    /* About Section - Tablet */
    .about-header-wrapper {
        text-align: center !important;
    }

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

    .text-end-md {
        text-align: center !important;
    }

    /* Leadership Section - Tablet */
    .leader-profile-img {
        width: 160px;
        height: 160px;
        margin-bottom: 20px;
    }

    .leader-name {
        font-size: 1.5rem;
        text-align: center;
    }

    .leader-role {
        text-align: center;
    }

    .quote-container {
        padding: 20px 15px;
    }

    .quote-mark {
        font-size: 2.5rem;
    }

    .start-quote {
        left: 10px;
    }

    /* Service & Vision Sections - Tablet */
    .service-text,
    .vision-text {
        text-align: justify;
    }

    .image-wrapper {
        margin-top: 30px;
        padding: 15px;
    }

    /* Products Section - Tablet */
    .hexagon-container {
        height: 250px;
        margin-bottom: 40px;
    }

    .hex {
        width: 70px;
        height: 85px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .step-icon {
        margin: 0 auto;
    }

    /* Footer - Tablet */
    .footer {
        text-align: center;
        padding: 40px 0 20px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    /* Hero Section - Mobile */
    .hero {
        padding: 50px 0;
        min-height: auto;
    }

    .company-name {
        font-size: 1.8rem;
    }

    .brand-title {
        font-size: 1.3rem;
    }

    .tagline {
        font-size: 1rem;
    }

    /* Sections - Mobile */
    .section {
        padding: 40px 0;
    }

    .section-title,
    .service-title {
        font-size: 1.6rem;
    }

    /* About Section - Mobile */
    .about-title {
        font-size: 1.2rem;
    }

    .blue-line {
        width: 40px;
    }

    /* Leadership Section - Mobile */
    .leader-profile-img {
        width: 140px;
        height: 140px;
    }

    .leader-name {
        font-size: 1.4rem;
    }

    .leader-role {
        font-size: 1rem;
    }

    .leader-img-square {
        max-width: 150px;
    }

    .quote-container {
        padding: 15px 10px;
    }

    .quote-mark {
        font-size: 2rem;
    }

    /* Products Section - Mobile */
    .hexagon-container {
        height: 220px;
    }

    .hex {
        width: 60px;
        height: 75px;
    }

    .step-item {
        padding: 15px;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    /* Nationwide Section - Mobile */
    .title-1 {
        font-size: 1.1rem;
    }

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

    /* Footer - Mobile */
    .footer-brand {
        font-size: 1.5rem;
    }

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

    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* Small Mobile Devices (360px and below) */
@media (max-width: 360px) {
    .company-name {
        font-size: 1.6rem;
    }

    .brand-title {
        font-size: 1.2rem;
    }

    .section-title,
    .service-title {
        font-size: 1.4rem;
    }

    .leader-profile-img {
        width: 120px;
        height: 120px;
    }

    .leader-name {
        font-size: 1.3rem;
    }

    .hexagon-container {
        height: 200px;
    }

    .hex {
        width: 50px;
        height: 65px;
    }
}

/* Landscape Mode for Tablets */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-wrapper {
        flex-direction: row;
        text-align: left;
    }

    .hero-graphic {
        flex: 1;
        order: 1;
    }

    .hero-text {
        flex: 1;
        order: 2;
    }

    .c-shape-container {
        max-width: 350px;
    }

    .nav {
        position: static;
        background: transparent;
        flex-direction: row;
        padding: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        width: auto;
    }

    .menu {
        flex-direction: row;
        gap: 15px;
    }

    .menu li a {
        padding: 5px 0;
        border-bottom: none;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* High-Density Screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .c-border,
    .frame-accent {
        border-width: 5.5px;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .mobile-menu-btn,
    .footer {
        display: none !important;
    }

    .section {
        padding: 20px 0 !important;
        break-inside: avoid;
    }

    a {
        color: #000 !important;
        text-decoration: none !important;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
}