/* CSS VARIABLES SECTION START */
:root {
    --primary: #0056b3;
    --primary-dark: #003d82;
    --primary-light: #1a75ff;
    --accent: #ff9800;
    --accent-dark: #e68900;
    --text: #2c3e50;
    --text-light: #5d6d7e;
    --background: #f8f9fa;
    --white: #ffffff;
    --light-bg: #e9ecef;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
/* CSS VARIABLES SECTION END */

/* RESET AND BASE STYLES SECTION START */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 25px auto 0;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.4);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}
/* RESET AND BASE STYLES SECTION END */

/* MOBILE STICKY HEADER STYLES SECTION START */
.mobile-sticky-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--accent);
    padding: 10px 15px;
}

.mobile-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.mobile-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.mobile-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-phone {
    background: linear-gradient(45deg, var(--accent), var(--accent-dark));
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* MOBILE STICKY HEADER STYLES SECTION END */

/* MOBILE NAVIGATION STYLES SECTION START */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 31, 58, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1002;
    transition: right 0.4s ease;
    padding: 70px 20px 20px;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 15px;
}

.mobile-nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-list a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
}

.mobile-nav-overlay.active {
    display: block;
}
/* MOBILE NAVIGATION STYLES SECTION END */

/* STICKY HEADER STYLES SECTION START */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--accent);
}

.sticky-header.active {
    transform: translateY(0);
}

.sticky-header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.sticky-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-logo-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.sticky-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.sticky-nav {
    display: flex;
    list-style: none;
    gap: 25px;
}

.sticky-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.sticky-nav a:hover {
    color: var(--accent);
}

.sticky-cta {
    background: linear-gradient(45deg, var(--accent), var(--accent-dark));
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}
/* STICKY HEADER STYLES SECTION END */

/* UNIQUE HEADER STYLES SECTION START */
.unique-header {
    background: linear-gradient(135deg, #0a1f3a, #1a3658);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--accent);
}

.header-top-bar {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.emergency-contact {
    background: linear-gradient(45deg, var(--accent), var(--accent-dark));
    padding: 8px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.social-mini {
    display: flex;
    gap: 12px;
}

.social-mini a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-mini a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* MAIN HEADER CONTENT */
.header-main {
    padding: 20px 0;
    position: relative;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* UNIQUE LOGO DESIGN */
.logo-complex {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.logo-3d {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(500px) rotateY(15deg);
    transition: var(--transition);
    box-shadow: 
        0 10px 30px rgba(0, 86, 179, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.logo-3d::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C13.1 2 14 2.9 14 4C14 5.1 13.1 6 12 6C10.9 6 10 5.1 10 4C10 2.9 10.9 2 12 2ZM21 9V7L15 5.5V7H9V5.5L3 7V9L9 10.5V12L3 13.5V15.5L9 14V16L3 17.5V19.5L9 18V22H15V18L21 19.5V17.5L15 16V14L21 15.5V13.5L15 12V10.5L21 9Z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    opacity: 0.9;
}

.logo-3d::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--primary-light), var(--accent), var(--primary));
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
    filter: blur(15px);
}

.logo-complex:hover .logo-3d {
    transform: perspective(500px) rotateY(0deg) scale(1.1);
}

.logo-complex:hover .logo-3d::after {
    opacity: 0.7;
}

.logo-text-advanced {
    display: flex;
    flex-direction: column;
}

.logo-main-text {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, white, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.logo-tagline {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 3px;
    font-weight: 500;
    margin-top: 5px;
    text-transform: uppercase;
}

/* UNIQUE NAVIGATION LAYOUT */
.nav-advanced {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

.nav-main {
    display: flex;
    list-style: none;
    gap: 25px;
    margin-right: 15px;
}

.nav-main li {
    position: relative;
}

.nav-main a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-main a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-main a:hover::before {
    width: 100%;
}

.nav-main a:hover {
    color: var(--accent);
}

/* UNIQUE CALL-TO-ACTION BUTTON */
.cta-special {
    background: linear-gradient(45deg, var(--accent), var(--accent-dark));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.cta-special:hover::before {
    left: 100%;
}

.cta-special:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.6);
}

/* HEADER BOTTOM STRIP */
.header-features {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.feature-icon-mini {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent);
}

.feature-text-mini h4 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-text-mini p {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* ELECTRIC CIRCUIT BACKGROUND */
.circuit-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--accent) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, var(--primary-light) 1px, transparent 1px),
        linear-gradient(90deg, transparent 98%, var(--accent) 98%),
        linear-gradient(0deg, transparent 98%, var(--primary-light) 98%);
    background-size: 50px 50px, 50px 50px, 100px 100px, 100px 100px;
    animation: circuitMove 20s linear infinite;
}

@keyframes circuitMove {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 100px 100px, -100px -100px, 200px 200px, -200px -200px; }
}
/* UNIQUE HEADER STYLES SECTION END */

/* IMAGE SLIDER STYLES SECTION START */
.slider-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.slide-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 25px;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--accent);
    transform: scale(1.1);
}
/* IMAGE SLIDER STYLES SECTION END */

/* ENHANCED SERVICES STYLES SECTION START */
.services-section {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--accent);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-features {
    margin: 15px 0;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-bg);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--accent);
    font-size: 0.8rem;
}

.service-action {
    margin-top: auto;
}
/* ENHANCED SERVICES STYLES SECTION END */

/* ENHANCED PRODUCTS STYLES SECTION START */
.products-section {
    background-color: var(--white);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    padding: 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.product-category {
    background: var(--light-bg);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--text-light);
}
/* ENHANCED PRODUCTS STYLES SECTION END */

/* ENHANCED WHY CHOOSE US STYLES SECTION START */
.why-choose-section {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 0h100v100H0z" fill="none"/><path d="M20 20h60v60H20z" fill="none" stroke="%230056b3" stroke-width="2"/><path d="M30 30h40v40H30z" fill="none" stroke="%23ff9800" stroke-width="1.5"/><circle cx="50" cy="50" r="15" fill="none" stroke="%23003d82" stroke-width="1"/><path d="M10 10l80 80M90 10L10 90" stroke="%230056b3" stroke-width="0.5" opacity="0.5"/></svg>');
    background-size: 300px, cover;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 86, 179, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 152, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}
/* ENHANCED WHY CHOOSE US STYLES SECTION END */

/* ENHANCED CONTACT STYLES SECTION START */
.contact-section {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M0 0h200v200H0z" fill="none"/><path d="M20 20h160v160H20z" fill="none" stroke="%230056b3" stroke-width="3"/><path d="M40 40h120v120H40z" fill="none" stroke="%23ff9800" stroke-width="2"/><circle cx="100" cy="100" r="30" fill="none" stroke="%23003d82" stroke-width="2"/><path d="M70 70l60 60M130 70L70 130" stroke="%230056b3" stroke-width="1" opacity="0.7"/><path d="M100 20v160M20 100h160" stroke="%23ff9800" stroke-width="0.5" opacity="0.5"/></svg>');
    background-size: 400px, cover;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(0, 86, 179, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}
/* ENHANCED CONTACT STYLES SECTION END */

/* HERO SECTION STYLES START */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1562408590-e32931084e23?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}
/* HERO SECTION STYLES END */

/* ABOUT SECTION STYLES START */
.about-section {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.feature-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 15px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}
/* ABOUT SECTION STYLES END */

/* FEATURES GRID STYLES START */
.features-grid-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon-large {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.7rem;
}
/* FEATURES GRID STYLES END */

/* CONTACT SECTION STYLES START */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-form {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
/* CONTACT SECTION STYLES END */

/* FOOTER STYLES SECTION START */
footer {
    background: 
        linear-gradient(rgba(0, 61, 130, 0.9), rgba(0, 61, 130, 0.95)),
        url('https://images.unsplash.com/photo-1562408590-e32931084e23?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23003d82' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--accent);
}

.footer-column p, .footer-column a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact i {
    width: 18px;
    margin-right: 8px;
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}
/* FOOTER STYLES SECTION END */

/* RESPONSIVE STYLES SECTION START */
@media (max-width: 1200px) {
    .services-grid, .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-content, .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid-main {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .image-slider {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .mobile-sticky-header {
        display: block;
    }
    
    /* Hide the original sticky header on mobile */
    .sticky-header {
        display: none;
    }
    
    /* Hide the unique header on mobile */
    .unique-header {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .services-grid, .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .nav-advanced {
        flex-direction: column;
        border-radius: 15px;
        padding: 15px;
        margin-top: 15px;
    }
    
    .nav-main {
        flex-direction: column;
        text-align: center;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-main-text {
        font-size: 1.5rem;
    }
    
    .image-slider {
        height: 400px;
    }
    
    .slide-content {
        padding: 30px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .sticky-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .feature-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .image-slider {
        height: 350px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
}
/* RESPONSIVE STYLES SECTION END */





/* HEADER BANNER STYLES */
.header-banner {
    background: linear-gradient(135deg, #1a2a57 0%, #2c3e50 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .header-banner {
        padding: 60px 0;
    }
    
    .banner-content h1 {
        font-size: 2.2rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
    }
}




/* Dropdown Styles */
.nav-item-with-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item-with-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    border-left-color: #2563eb;
    color: #2563eb;
}

.dropdown-menu i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

/* Mobile Dropdown Styles */
.mobile-dropdown-menu {
    display: none;
    background: #f8f9fa;
    padding-left: 20px;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-nav-list .nav-item-with-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-list .nav-item-with-dropdown > a .fa-chevron-down {
    transition: transform 0.3s ease;
}

.mobile-nav-list .nav-item-with-dropdown > a.active .fa-chevron-down {
    transform: rotate(180deg);
}