* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ====== GLOBAL STYLES ====== */
body {
    font-family: 'Work Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== ANIMATIONS & KEYFRAMES ====== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ====== HEADER & NAVIGATION ====== */
header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(255, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #000080;
    z-index: 1001;
}

.logo-icon {
    width: 50px;
    height: auto;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #060000;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #7357e3;
}

/* Mobile Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000080;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hamburger Animation */
.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ====== BUTTON STYLES ====== */
.btn-primary {
    display: inline-block;
    padding: 8px 30px;
    background-color: #000080;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    border-width: 1px;
    border: #000080 1px solid;
    cursor: pointer;
    text-decoration: none !important;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #fff;
    transform: scale(1.05);
    color: #000080 !important;
    border-width: 1px;
    border-radius: 30px;
    border: #000080 1px solid;
}

.btn-primary:active {
    transform: scale(0.98);
}

.hero-btn {
    display: inline-block;
    padding: 8px 30px;
    background-color: #000080;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-btn:hover {
    background-color: #ffffff;
    color: #000080;
    border: #000000;
    border-width: 1px;
    border-width: 20px;
}

.about-btn {
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
    display: inline-block;
    padding: 8px 30px;
    background-color: #000080;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.2s ease;
}

.about-btn::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255,255,255,0.5), rgba(255,255,255,0));
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.about-btn:hover::after {
    opacity: 1;
}

.about-btn:hover {
    transform: scale(1.05);
}

.about-btn:active {
    transform: scale(0.95);
}

.about-btn::after {
    left: var(--x);
    top: var(--y);
}

.service-btn {
    display: inline-block;
    padding: 8px 30px;
    background-color: #000080;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-btn:hover {
    background-color: #000080;
    transform: scale(1.05);
}

.service-btn:active {
    transform: scale(0.98);
}

.book-btn {
    display: inline-block;
    background-color: #000080;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 9999px;
    box-shadow: 0 5px 15px rgba(0, 0, 128, 0.3);
    transition: all 0.3s ease;
}

.book-btn:hover {
    background-color: #fff; 
    color: #000080;
    box-shadow: 0 8px 20px rgba(26, 11, 94, 0.4);
    transform: translateY(-2px);
}

.shop-button {
    display: inline-block;
    padding: 8px 30px;
    background-color: #000080;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.2s ease;
}

.shop-button::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255,255,255,0.45), rgba(255,255,255,0));
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    left: var(--x);
    top: var(--y);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.shop-button:hover::after {
    opacity: 1;
}

.shop-button:hover {
    transform: scale(1.05);
}

.shop-button:active {
    transform: scale(0.95);
}

.buy-now-button {
    display: inline-block;
    background-color: #000080;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: 24px;
}

.buy-now-button:hover {
    background-color: white;
    color: #000080;
    border-width: 1px;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    background-color: #ffffff;
    color: #ffd000;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 30px;
    border: 2px solid #ffd000;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.2s ease;
    z-index: 1;
}

.review-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffd000;
    -webkit-mask: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'>\<path d='M0 120 Q150 80 250 120 T500 120 V200 H0 Z' fill='black'/>\</svg>") repeat-x;
    mask: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 200'>\<path d='M0 120 Q150 80 250 120 T500 120 V200 H0 Z' fill='black'/>\</svg>") repeat-x;
    background-size: cover;
    transform: translateY(120%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.review-btn:hover::before {
    transform: translateY(0%);
}

.review-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.submit-btn {
    background: #000080;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    width: auto;
}

.submit-btn:hover {
    background: white;
    color: #000080;
    border: #000080 1px solid;
}

.submit-btn.loading::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

/* ====== HERO SECTION ====== */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    padding: 0px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    margin-top: 0px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    color: #000080;
    margin-bottom: 10px;
    margin-top: 0px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
}

.hero-text p {
    color: #666;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
}

/* Carousel Styles */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0px;
    margin-top: 50px;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 3s ease-in-out;
}

.slides img {
    width: 100%;
    flex-shrink: 0;
}

/* ====== STATS BAR ====== */
.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 0px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #000080;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #000080;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

/* ====== ABOUT SECTION (HOME PAGE) ====== */
.about {
    background: #ffffff;
    padding: 60px 0;
    margin-top: 0;
}

.about .section-subtitle {
    color: #000080;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about .section-title {
    font-size: 38px;
    color: #000000;
    margin-bottom: 40px;
    text-align: left;
    font-weight: 400;
    line-height: 1.3;
}

.about .section-title em {
    font-style: italic;
    font-weight: 700;
}

.about .about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.about .about-content > div:first-child {
    flex: 1;
    text-align: left;
}

.about .about-content p {
    color: #333333;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

.about .btn-primary {
    margin-top: 30px;
    padding: 12px 35px;
}

.about .about-image-container {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.about .about-single-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    object-fit: cover;
    margin-top: -40px;
}

/* ====== ABOUT PAGE STYLES ====== */
.about-content {
    text-align: center;
    background-color: #000080;
    color: white;
    padding: 10px 20px;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px 40px;
}

.breadcrumb {
    text-align: center;
    background-color: #000080;
    color: white;
    padding: 10px 20px;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 16px;
}

h1 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 50px;
    font-weight: 500;
    color: #292929;
}

h1 em {
    font-style: italic;
    font-weight: 600;
}

.content-wrapper {
    margin-top: 60px;
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.image-container {
    flex: 1;
    max-width: 50%;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.text-container {
    flex: 1;
    max-width: 50%;
}

.text-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-bottom: 0px;
}

/* ====== WHY CHOOSE SECTION ====== */
.why-choose {
    position: relative;
    background: #ffffff;
    z-index: 5;
    padding: 80px 0;
}

.why-choose-content {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    overflow: visible;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    position: relative;
    z-index: 10;
}

.feature-card:first-child {
    position: relative;
    z-index: 1;
    visibility: visible;
    opacity: 1;
    transform: none;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #000080;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ====== SERVICES SECTION ====== */
.services {
    padding: 80px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services .section-title {
    font-size: 38px;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
    line-height: 1.3;
}

.section-title .highlight-text {
    font-style: italic;
    font-weight: 700;
    color: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 300px;
    background: none;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: #000080;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-content p {
    color: #666;
    font-size: 14px;
}

.view-more-btn {
    text-align: center;
    margin-top: 40px;
    cursor: pointer;
}

/* ====== SERVICES PAGE STYLES ====== */
.services-header-section {
    text-align: center;
    padding: 50px 20px;
}

.services-header-section .tag-breadcrumb {
    display: inline-block;
    background-color: #000080;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    margin-bottom: 20px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.services-main-heading {
    font-size: 45px;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}

.services-main-heading .highlight-text {
    font-style: italic;
    font-weight: 900;
    color: #222;
}

.services-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    padding: 20px 0;
}

.service-box {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26,11,94,0.15);
    border-color: #000080;
}

.icon-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.service-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #000080;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-description {
    text-align: justify;
    line-height: 1.8;
    color: #555;
    font-size: 15px;
    margin-bottom: 25px;
}

/* Accordion Styles */
.accordion-btn {
    width: 100%;
    background: #000080;
    color: white;
    border: none;
    padding: 16px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.accordion-btn:hover {
    background: #000080;
    transform: scale(1.02);
}

.accordion-btn.active {
    border-radius: 30px 30px 0 0;
}

.arrow-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.accordion-btn.active .arrow-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f5f7fa;
    border-radius: 0 0 20px 20px;
}

.accordion-content.active {
    max-height: 500px;
}

.content-inner {
    padding: 25px;
}

.pricing-list {
    list-style: none;
}

.pricing-list li {
    padding: 10px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px dashed #ddd;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.services-footer {
    text-align: center;
    margin-top: 200px;
}

/* ====== SHOWCASE SECTION ====== */
.showcase {
    background: #ffffff;
    padding: 80px 0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.showcase .section-title {
    font-size: 38px;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
    line-height: 1.3;
}

.showcase .highlight-text {
    font-style: italic;
    font-weight: 700;
    color: #000000;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 15px;
}

.slides-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.slide-item {
    min-width: calc(33.333% - 20px);
    flex-shrink: 0;
}

.slide-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: #000080;
    color: white;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #000080;
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: #a698e0;
}

/* ====== PRODUCT SECTION ====== */
.product-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Work Sans', sans-serif;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-tag {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 5px;
    color: #000080;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.product-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.product-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 12px;
    max-width: 350px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 300px;
    background: #f5f5f5;
    border-radius: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.product-description {
    font-size: 16px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
    text-align: left;
}

/* ====== PRODUCT DETAIL PAGE ====== */
.product-header-section {
    text-align: center;
    padding: 50px 20px;
}

.tag-breadcrumb {
    display: inline-block;
    background-color: #000080;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    margin-bottom: 20px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.product-main-heading {
    font-size: 48px;
    color: #333;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.product-main-heading .highlight-text {
    font-style: italic;
    font-weight: 800;
    color: #222;
}

.product-detail-container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-visual-column {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info-column {
    flex: 1;
    padding: 40px;
    text-align: left;
}

.product-main-header {
    font-size: 32px;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.product-model-title {
    font-size: 18px;
    color: #555;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}

/* ====== TESTIMONIALS SECTION ====== */
.google-reviews-wrapper {
    margin-top: 40px;
}

.testimonials {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
    text-align: center;
}

.testimonials-header .section-subtitle {
    color: #000080;
    text-align: center;
    font-weight: 600;
    letter-spacing: 6px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    text-align: center;
}

.testimonials-header .section-title {
    text-align: center;
    color: #333;
    font-family: 'Work Sans', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
}

.testimonials-header .section-title span {
    display: block;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonial-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonial-slides-track {
    display: flex;
    transition: transform 0.6s ease;
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: none;
    max-width: 700px;
    width: 100%;
    text-align: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: none;
}

.testimonial-card.featured {
    background: #000080;
    color: #fff;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.testimonial-card.featured p {
    color: #fff;
}

.testimonial-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10;
    transition: all 0.3s;
}

.testimonial-slider-btn:hover {
    background: #000080;
    color: #fff;
}

.testimonial-slider-btn.prev {
    left: 0;
}

.testimonial-slider-btn.next {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: #000080;
    width: 30px;
    border-radius: 6px;
}

.testimonial-dot:hover {
    background: #a698e0;
}

/* ====== CONTACT SECTION ====== */
.contact-section {
    padding: 0px 0px;
}

.contact-header {
    text-align: center;
    margin-bottom: 10px;
}

.contact-header h1 {
    font-size: 36px;
    color: #000080;
    margin-bottom: 10px;
}

.contact-header .subtitle {
    font-style: italic;
    color: #666;
    font-size: 18px;
}

.get-quote-badge {
    display: inline-block;
    background: #000080;
    color: white;
    padding: 8px 20px;
    border-radius: 2px;
    font-size: 14px;
    margin-bottom: 30px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 50px;
}

.contact-image {
    text-align: center;
}

.contact-image img {
    max-width: 100%;
    height: auto;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    color: #000080;
    margin-bottom: 10px;
    font-size: 24px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 15px 20px;
    border-radius: 8px;
    animation: slideDown 0.3s ease;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 15px 20px;
    border-radius: 8px;
    animation: slideDown 0.3s ease;
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-group input:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

.contact-form-wrapper .subtitle {
    color: #666;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #000080;
    box-shadow: 0 0 0 3px rgba(26, 11, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ====== CONTACT INFO CARDS ====== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: stretch;
    margin: 50px auto;
    max-width: 1200px;
    width: 90%;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    width: 100%;
    max-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    color: white;
}

.info-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000080;
    transition: height 0.4s ease;
    z-index: 0;
}

.info-card:hover::before {
    height: 100%;
}

.info-card h4,
.info-card p {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.info-icon {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.info-icon img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.info-card:hover .info-icon img {
    transform: scale(1.1);
}

.info-card:hover .info-icon {
    background-color: #ffffff;
}

.info-icon {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    border-color: #000080;
    border-width: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon img {
    width: 40px;
    height: 40px;
}

/* ====== MAP SECTION ====== */
.map-section {
    display: fit;
    margin: 50px auto;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    justify-content: center;
    align-items: center;
    position: relative;
}

.map-section::before {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    color: #000080;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1;
}

.map-section iframe {
    width: 100%;
    max-width: 1150px;
    height: 450px;
    border: 0;
    border-radius: 10px;
    display: block;
}

/* ====== FOOTER ====== */
footer {
    background: #000080;
    color: white;
    padding: 60px 0 20px;
}

.content-container {
    background-color: #000080;
    padding: 30px;
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.text-block {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
}

.social-icons-container {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

/* ====== UTILITY CLASSES ====== */
.section-subtitle {
    color: #000080;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 400;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease forwards;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    /* Mobile Navigation Styles */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
        font-size: 1.1rem;
        color: #333;
    }

    .nav-links .btn-primary {
        width: 100%;
        text-align: center;
        display: block;
        margin-top: 1rem;
    }

    /* Fix body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-text h1 {
        font-size: 32px;
        text-align: center;
    }

    .hero-text p {
        text-align: center;
    }

    .hero-btn {
        margin-top: 20px;
    }

    /* About Section */
    .content-wrapper {
        flex-direction: column;
    }

    .image-container,
    .text-container {
        max-width: 100%;
    }

    .about .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about .section-title {
        font-size: 26px;
        text-align: center;
    }

    .about .about-content p {
        font-size: 14px;
        text-align: justify;
    }

    .about .about-image-container {
        justify-content: center;
    }

    .about .about-single-image {
        max-width: 100%;
        margin-top: 0;
    }

    /* Testimonials */
    .testimonial-slide {
        min-width: 100%;
    }

    .testimonial-slider-container {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        padding: 0 50px;
        overflow: visible;
    }

    .testimonial-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Showcase */
    .slide-item {
        min-width: 100%;
    }

    .slider-container {
        padding: 0 40px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Grids */
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid,
    .testimonials-grid,
    .products-grid,
    .hero-content {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Typography */
    h1, .hero-text h1 {
        font-size: 32px;
    }

    .text-container p {
        font-size: 16px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }

    /* Padding */
    .about-section {
        padding: 40px 20px 20px;
    }

    .why-choose {
        padding: 60px 0;
    }

    /* Stats */
    .stats-container {
        gap: 40px;
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-item {
        width: 100%;
        justify-content: center;
    }

    .stat-number {
        font-size: 36px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle img {
        width: 30px;
        height: 30px;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Services Page */
    .services-container {
        grid-template-columns: 1fr;
    }

    .service-box {
        padding: 30px 20px;
    }

    /* Product Detail */
    .product-detail-container {
        flex-direction: column;
    }

    .product-visual-column,
    .product-info-column {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .about .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about .about-image-container {
        justify-content: center;
        margin-top: 30px;
    }

    .about .about-single-image {
        margin-top: 0;
    }

    .features-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}