/* <!--AAAAA!!! GLOBAL STYLES STARTS !!!AAAAA--> */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --dark-blue: #172c2f;
    --navy: #081828;
    --light-blue: #649623;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --primary: #649623;
    --secondary: #172c2f;
    --accent: #ff6b6b;
    --dark: #1d2144;
    --light: #f8f9fa;
    --text: #4a5568;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    
    --primary-green: #649623;
    --dark-green: #172c2f;
    --black: #0f0f0f;
    --dark-gray: #1a1a1a;
    --gold: #ffd700;
}

body {
    background-color: var(--light-gray);
    color: var(--navy);
    overflow-x: hidden;
    padding-top: 130px;
    transition: padding-top 0.3s ease;
}
/* <!--AAAAA!!! GLOBAL STYLES ENDS !!!AAAAA--> */

/* <!--AAAAA!!! HEADER STARTS !!!AAAAA--> */
.header-container {
    display: flex;
    width: 100vw;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    height: 130px;
    transition: height 0.3s ease;
}

.logo-column {
    width: 250px;
    min-width: 250px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    z-index: 10;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    justify-content: center;
}

.logo-icon {
    width: 180px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
    background: transparent;
    padding: 10px;
}

.logo-icon:hover {
    transform: scale(1.1);
}

.logo-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-text {
    display: none;
}

.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.top-bar {
    background-color: var(--dark-blue);
    height: 50px;
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 14px;
    padding: 0;
    width: 100%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 30px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.top-bar-item i {
    margin-right: 8px;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--light-blue);
}

.navbar {
    background-color: var(--white);
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    flex-shrink: 0;
    transition: height 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    padding: 10px 15px;
    border-radius: 5px;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    box-shadow: 5px 5px 10px #d9d9d9, 
                -5px -5px 10px #ffffff;
}

.nav-menu a:hover {
    color: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 8px 8px 16px #d9d9d9, 
                -8px -8px 16px #ffffff;
}

.nav-menu a:active {
    transform: translateY(1px);
    box-shadow: 2px 2px 5px #d9d9d9, 
                -2px -2px 5px #ffffff;
}

.nav-menu a.active {
    color: var(--light-blue);
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    box-shadow: inset 5px 5px 10px #d9d9d9, 
                inset -5px -5px 10px #ffffff;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--light-blue);
}

.dropdown::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 12px;
}

.contact-info {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    padding: 10px 15px;
    border-radius: 5px;
    border-left: 3px solid var(--light-blue);
    white-space: nowrap;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.contact-icon i {
    color: var(--white);
    font-size: 18px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    color: var(--gray);
}

.contact-number {
    font-weight: 700;
    color: var(--navy);
    font-size: 16px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--navy);
    background: none;
    border: none;
    z-index: 1001;
}

/* Mobile Header Additional Elements */
.mobile-contact-info {
    display: none;
    align-items: center;
    background: var(--light-gray);
    padding: 8px 15px;
    border-radius: 5px;
    border-left: 3px solid var(--light-blue);
    margin-right: 15px;
    white-space: nowrap;
}

.mobile-contact-icon {
    width: 30px;
    height: 30px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.mobile-contact-icon i {
    color: var(--white);
    font-size: 14px;
}

.mobile-contact-text {
    display: flex;
    flex-direction: column;
}

.mobile-contact-label {
    font-size: 10px;
    color: var(--gray);
}

.mobile-contact-number {
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
}

.mobile-social-icons {
    display: none;
    gap: 12px;
    margin-right: 15px;
}

.mobile-social-icons a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.mobile-social-icons a:hover {
    color: var(--light-blue);
}
/* <!--AAAAA!!! HEADER ENDS !!!AAAAA--> */

/* <!--AAAAA!!! SLIDER STARTS !!!AAAAA--> */
.slider-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin-top: 0;
    margin-left: calc(-50vw + 50%);
    z-index: 1;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 1200%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
    width: 8.333%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.slide:nth-child(1) { background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); }
.slide:nth-child(2) { background: linear-gradient(135deg, #c2410c 0%, #dc2626 100%); }
.slide:nth-child(3) { background: linear-gradient(135deg, #047857 0%, #059669 100%); }
.slide:nth-child(4) { background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%); }
.slide:nth-child(5) { background: linear-gradient(135deg, #b45309 0%, #d97706 100%); }
.slide:nth-child(6) { background: linear-gradient(135deg, #be185d 0%, #db2777 100%); }
.slide:nth-child(7) { background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%); }
.slide:nth-child(8) { background: linear-gradient(135deg, #4d7c0f 0%, #65a30d 100%); }
.slide:nth-child(9) { background: linear-gradient(135deg, #c2410c 0%, #ea580c 100%); }
.slide:nth-child(10) { background: linear-gradient(135deg, #4338ca 0%, #4f46e5 100%); }
.slide:nth-child(11) { background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%); }
.slide:nth-child(12) { background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%); }

.slide-content {
    display: flex;
    width: 85%;
    height: 70%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.text-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.service-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 90%;
    color: white;
}

.image-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
}

.service-image {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease;
}

.service-image:hover {
    transform: scale(1.1);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 70%;
    left: 80%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 85%;
    animation-delay: -10s;
}

.floating-element:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 15%;
    animation-delay: -7s;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.slider-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    transition: left 0.4s;
}

.slider-dot.active::after {
    left: 0;
}

.slider-dot.active {
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.slider-arrow i {
    font-size: 1.5rem;
    color: white;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    z-index: 10;
}

.progress {
    height: 100%;
    background: white;
    width: 8.333%;
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.service-counter {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, 30px) rotate(90deg);
    }
    50% {
        transform: translate(0, 60px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, 30px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}
/* <!--AAAAA!!! SLIDER ENDS !!!AAAAA--> */

/* <!--AAAAA!!! SERVICES SECTION STARTS !!!AAAAA--> */
.services-section {
    width: 100%;
    padding: 60px 0;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--light-blue), var(--dark-blue));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--light-blue), var(--dark-blue));
    z-index: 2;
}

.service-icon {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.service-icon i {
    font-size: 4rem;
    background: linear-gradient(to right, var(--light-blue), var(--dark-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    z-index: 2;
    position: relative;
}

.screen-icon {
    animation: screen-shake 3s infinite ease-in-out;
}

@keyframes screen-shake {
    0%, 100% { transform: rotate(0deg) scale(1); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-2deg) scale(1.05); }
    20%, 40%, 60%, 80% { transform: rotate(2deg) scale(1.05); }
}

.battery-icon {
    animation: battery-pulse 4s infinite ease-in-out;
}

@keyframes battery-pulse {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.15); }
}

.camera-icon {
    animation: camera-flash 5s infinite ease-in-out;
}

@keyframes camera-flash {
    0%, 85%, 100% { 
        transform: scale(1); 
        filter: brightness(1);
    }
    5%, 10% { 
        transform: scale(1.1); 
        filter: brightness(1.5);
    }
    15%, 20% { 
        transform: scale(1); 
        filter: brightness(1);
    }
    25%, 30% { 
        transform: scale(1.1); 
        filter: brightness(1.5);
    }
}

.charging-icon {
    animation: plug-spin 6s infinite linear;
}

@keyframes plug-spin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.water-icon {
    animation: water-drop 4s infinite ease-in-out;
}

@keyframes water-drop {
    0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    25% { 
        transform: translateY(-10px) scale(1.1); 
    }
    50% { 
        transform: translateY(0) scale(1); 
    }
    75% { 
        transform: translateY(5px) scale(1.05); 
    }
}

.software-icon {
    animation: code-bounce 3s infinite ease-in-out;
}

@keyframes code-bounce {
    0%, 100% { 
        transform: translateX(0) scale(1); 
    }
    25% { 
        transform: translateX(-8px) scale(1.05); 
    }
    50% { 
        transform: translateX(0) scale(1); 
    }
    75% { 
        transform: translateX(8px) scale(1.05); 
    }
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(100, 150, 35, 0.1);
    top: -40px;
    right: -40px;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(23, 44, 47, 0.1);
    bottom: -30px;
    left: -30px;
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.service-content p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.call-now-btn {
    padding: 12px 30px;
    background: var(--light-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(100, 150, 35, 0.3);
    background: linear-gradient(145deg, #6da826, #5c8a1f);
    box-shadow: 5px 5px 10px #5c8a1f, 
                -5px -5px 10px #7ec229;
}

.call-now-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(100, 150, 35, 0.4);
    background: linear-gradient(145deg, #5c8a1f, #6da826);
    box-shadow: 8px 8px 16px #5c8a1f, 
                -8px -8px 16px #7ec229;
}

.call-now-btn:active {
    transform: translateY(1px);
    box-shadow: 2px 2px 5px #5c8a1f, 
                -2px -2px 5px #7ec229;
}

.call-now-btn i {
    font-size: 1rem;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.bg-element-1 {
    width: 300px;
    height: 300px;
    background: var(--light-blue);
    top: -150px;
    right: -150px;
}

.bg-element-2 {
    width: 200px;
    height: 200px;
    background: var(--dark-blue);
    bottom: -100px;
    left: -100px;
}

.mobile-device {
    position: absolute;
    width: 250px;
    height: 500px;
    background: #1d2144;
    border-radius: 30px;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 0;
    opacity: 0.03;
    overflow: hidden;
}

.mobile-device::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 94%;
    background: #0f1120;
    border-radius: 20px;
    top: 3%;
    left: 5%;
}

.mobile-notch {
    position: absolute;
    width: 60%;
    height: 25px;
    background: #0f1120;
    border-radius: 0 0 15px 15px;
    top: 0;
    left: 20%;
}
/* <!--AAAAA!!! SERVICES SECTION ENDS !!!AAAAA--> */

/* <!--AAAAA!!! ABOUT SECTION STARTS !!!AAAAA--> */
.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 40px;
    position: relative;
    margin: 40px auto;
    max-width: 1200px;
    width: calc(100% - 40px);
}

.about-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--light-blue);
    border-radius: 12px;
    z-index: 1;
    opacity: 0.7;
}

.about-image-container::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent);
    border-radius: 12px;
    z-index: 0;
    opacity: 0.5;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-content-container {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.section-subtitle {
    color: var(--light-blue);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.about-section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-blue);
    line-height: 1.2;
}

.section-text {
    color: var(--text);
    margin-bottom: 25px;
    font-size: 16px;
}

.features-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 12px;
}

.feature-text {
    color: var(--text);
}

.read-more-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(100, 150, 35, 0.3);
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #6da826, #5c8a1f);
    box-shadow: 5px 5px 10px #5c8a1f, 
                -5px -5px 10px #7ec229;
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(100, 150, 35, 0.4);
    background: linear-gradient(145deg, #5c8a1f, #6da826);
    box-shadow: 8px 8px 16px #5c8a1f, 
                -8px -8px 16px #7ec229;
}

.read-more-btn:active {
    transform: translateY(0);
    box-shadow: 2px 2px 5px #5c8a1f, 
                -2px -2px 5px #7ec229;
}

.read-more-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-blue), var(--light-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.read-more-btn:hover::after {
    opacity: 1;
}

.decoration {
    position: absolute;
    z-index: 0;
}

.decoration-1 {
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(100, 150, 35, 0.1), rgba(23, 44, 47, 0.1));
}

.decoration-2 {
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 193, 7, 0.1));
}
/* <!--AAAAA!!! ABOUT SECTION ENDS !!!AAAAA--> */

/* <!--AAAAA!!! BRANDS SECTION STARTS !!!AAAAA--> */
.brands-section {
    background: linear-gradient(135deg, #0a1f0a 0%, #1a2e1a 100%);
    color: #fff;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    width: 100%;
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

.brands-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 60px;
    position: relative;
    color: #e8f5e9;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.brands-title:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 5px;
    background: linear-gradient(90deg, var(--light-blue) 0%, var(--dark-blue) 100%);
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(100, 150, 35, 0.5);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.brand-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(100, 150, 35, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 280px;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
}

.brand-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 150, 35, 0.1), transparent);
    transition: left 0.7s ease;
    z-index: 1;
}

.brand-card:hover:before {
    left: 100%;
}

.brand-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(100, 150, 35, 0.3);
    border-color: rgba(100, 150, 35, 0.6);
}

.brand-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    overflow: hidden;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
}

.brand-card:hover .brand-logo {
    transform: scale(1.2) rotate(5deg);
    background: rgba(100, 150, 35, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(100, 150, 35, 0.2);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.5s ease;
    position: relative;
    z-index: 3;
}

.brand-card:hover .brand-logo img {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4)) brightness(1.1);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 20px;
    color: #e0e0e0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
}

.brand-card:hover .brand-name {
    opacity: 1;
    transform: translateY(0);
}

.brand-card > *:not(:before) {
    position: relative;
    z-index: 3;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    70% {
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-card {
    animation: fadeInUp 0.8s forwards;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.brand-logo {
    animation: float 5s infinite ease-in-out;
}

.brand-card:nth-child(1) .brand-logo { animation-delay: 0.2s; }
.brand-card:nth-child(2) .brand-logo { animation-delay: 0.4s; }
.brand-card:nth-child(3) .brand-logo { animation-delay: 0.6s; }
.brand-card:nth-child(4) .brand-logo { animation-delay: 0.8s; }
.brand-card:nth-child(5) .brand-logo { animation-delay: 1.0s; }
.brand-card:nth-child(6) .brand-logo { animation-delay: 1.2s; }
.brand-card:nth-child(7) .brand-logo { animation-delay: 1.4s; }
.brand-card:nth-child(8) .brand-logo { animation-delay: 1.6s; }
.brand-card:nth-child(9) .brand-logo { animation-delay: 1.8s; }
/* <!--AAAAA!!! BRANDS SECTION ENDS !!!AAAAA--> */

/* <!--AAAAA!!! FAQ SECTION STARTS !!!AAAAA--> */
.faq-section {
    width: 100%;
    margin: 60px auto;
    padding: 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--light-blue);
    position: relative;
    z-index: 1;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.faq-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 150, 35, 0.03) 0%, rgba(23, 44, 47, 0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-card:hover::before {
    opacity: 1;
}

.faq-question {
    padding: 20px;
    background: var(--light-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.faq-card:hover .faq-question {
    background: rgba(100, 150, 35, 0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--light-blue);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    color: var(--text);
    line-height: 1.7;
}

.faq-card.active .faq-answer {
    padding: 20px;
    max-height: 300px;
}

.faq-card.active .faq-question i {
    transform: rotate(180deg);
}

.number {
    display: inline-block;
    background: var(--light-blue);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    margin-right: 10px;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(100, 150, 35, 0.3);
}

.contact-section {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--dark-blue) 100%);
    border-radius: 15px;
    color: white;
    box-shadow: 0 8px 25px rgba(100, 150, 35, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: pulse 8s infinite linear;
}

@keyframes pulse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.contact-section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    position: relative;
}

.contact-btn {
    display: inline-block;
    background: white;
    color: var(--dark-blue);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    box-shadow: 5px 5px 10px #d9d9d9, 
                -5px -5px 10px #ffffff;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: var(--light-gray);
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    box-shadow: 8px 8px 16px #d9d9d9, 
                -8px -8px 16px #ffffff;
}

.contact-btn:active {
    transform: translateY(1px);
    box-shadow: 2px 2px 5px #d9d9d9, 
                -2px -2px 5px #ffffff;
}
/* <!--AAAAA!!! FAQ SECTION ENDS !!!AAAAA--> */

/* <!--AAAAA!!! WHY CHOOSE US SECTION STARTS !!!AAAAA--> */
.why-choose-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7f0 0%, #e6f0e6 100%);
    position: relative;
    overflow: hidden;
}

.mobile-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.mobile-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.12;
    animation: floatMobile 25s infinite ease-in-out;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-icon.screen::before {
    content: "📱";
    font-size: 2.5rem;
}

.mobile-icon.battery::before {
    content: "🔋";
    font-size: 2.2rem;
}

.mobile-icon.mic::before {
    content: "🎤";
    font-size: 1.8rem;
}

.mobile-icon.receiver::before {
    content: "📞";
    font-size: 2rem;
}

.mobile-icon.charging-jack::before {
    content: "⚡";
    font-size: 2.3rem;
}

.mobile-icon.speaker::before {
    content: "🔊";
    font-size: 2.1rem;
}

.mobile-icon.back-panel::before {
    content: "📱";
    font-size: 2rem;
    transform: rotate(180deg);
    display: inline-block;
}

.mobile-icon.dark {
    filter: hue-rotate(0deg) saturate(2) brightness(0.7);
}

.mobile-icon.light {
    filter: hue-rotate(60deg) saturate(2) brightness(0.8);
}

@keyframes floatMobile {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-40px) translateX(20px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(-80px) translateX(-20px) rotate(180deg) scale(1);
    }
    75% {
        transform: translateY(-40px) translateX(15px) rotate(270deg) scale(1.1);
    }
}

.why-choose-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 70px;
}

.why-choose-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.why-choose-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.why-choose-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(27, 57, 57, 0.15),
        0 5px 15px rgba(27, 57, 57, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(27, 57, 57, 0.1);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.why-choose-card:hover::before {
    opacity: 0.05;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(27, 57, 57, 0.2),
        0 15px 30px rgba(27, 57, 57, 0.15),
        0 5px 15px rgba(27, 57, 57, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(27, 57, 57, 0.2);
}

.why-choose-content {
    position: relative;
    z-index: 2;
}

.why-choose-header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 
        0 8px 20px rgba(27, 57, 57, 0.2),
        0 4px 10px rgba(27, 57, 57, 0.15);
}

.why-choose-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: inherit;
    opacity: 0.2;
    z-index: -1;
}

.why-choose-card-1 .why-choose-icon {
    background: var(--dark-blue);
    color: var(--white);
}

.why-choose-card-2 .why-choose-icon {
    background: var(--light-blue);
    color: var(--white);
}

.why-choose-card-3 .why-choose-icon {
    background: var(--dark-blue);
    color: var(--white);
}

.why-choose-card-4 .why-choose-icon {
    background: var(--light-blue);
    color: var(--white);
}

.why-choose-card-5 .why-choose-icon {
    background: var(--dark-blue);
    color: var(--white);
}

.why-choose-card-6 .why-choose-icon {
    background: var(--light-blue);
    color: var(--white);
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 
        0 15px 30px rgba(27, 57, 57, 0.3),
        0 8px 20px rgba(27, 57, 57, 0.2);
}

.why-choose-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.why-choose-card-2 .why-choose-card-title,
.why-choose-card-4 .why-choose-card-title,
.why-choose-card-6 .why-choose-card-title {
    color: var(--light-blue);
}

.why-choose-card-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.why-choose-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-blue);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(101, 153, 70, 0.3);
}

.why-choose-card-1 .why-choose-badge,
.why-choose-card-3 .why-choose-badge,
.why-choose-card-5 .why-choose-badge {
    background: var(--dark-blue);
    box-shadow: 0 4px 12px rgba(27, 57, 57, 0.3);
}

.why-choose-card:hover .why-choose-badge {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(27, 57, 57, 0.4);
}

.why-choose-card-2 .why-choose-card:hover .why-choose-badge,
.why-choose-card-4 .why-choose-card:hover .why-choose-badge,
.why-choose-card-6 .why-choose-card:hover .why-choose-badge {
    box-shadow: 0 6px 18px rgba(101, 153, 70, 0.4);
}

.why-choose-corner-highlight {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, transparent 0%, transparent 50%, rgba(27, 57, 57, 0.05) 50%, rgba(27, 57, 57, 0.05) 100%);
    border-top-right-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-choose-card:hover .why-choose-corner-highlight {
    width: 80px;
    height: 80px;
}

.why-choose-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.why-choose-fade-up.appear {
    opacity: 1;
    transform: translateY(0);
}
/* <!--AAAAA!!! WHY CHOOSE US SECTION ENDS !!!AAAAA--> */

/* <!--AAAAA!!! CONTACT US SECTION STARTS !!!AAAAA--> */
.contact-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 0 20px;
}

.contact-left-column,
.contact-right-column {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-left-column:hover,
.contact-right-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-left-column h3,
.contact-right-column h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.contact-left-column h3::after,
.contact-right-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--light-blue), var(--dark-blue));
    border-radius: 2px;
}

.contact-description,
.form-description {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(100, 150, 35, 0.3);
}

.contact-text-box h4 {
    color: var(--dark-blue);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-text-box p {
    color: var(--text);
    margin-bottom: 5px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-note {
    font-size: 0.85rem !important;
    color: var(--gray) !important;
    font-style: italic;
}

.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-social h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.social-icons-contact {
    display: flex;
    gap: 15px;
}

.social-icon-contact {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.social-icon-contact:hover {
    background: var(--light-blue);
    color: white;
    transform: translateY(-3px);
    border-color: var(--light-blue);
}

/* Contact Form Styles */
.contact-form {
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(100, 150, 35, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--light-blue);
}

.form-checkbox label {
    color: var(--text);
    font-size: 0.9rem;
    cursor: pointer;
    user-select: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(100, 150, 35, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(100, 150, 35, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
    line-height: 1.5;
}
/* <!--AAAAA!!! CONTACT US SECTION ENDS !!!AAAAA--> */

/* <!--AAAAA!!! FOOTER STARTS !!!AAAAA--> */
.ultra-premium-footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: white;
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--primary-green);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(100, 150, 35, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path fill="%23649623" d="M50,10a40,40 0 1,0 0,80a40,40 0 1,0 0,-80" /></svg>');
    background-size: cover, cover, 200px;
    z-index: 1;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    position: relative;
    z-index: 2;
    padding: 0 30px;
}

.footer-column h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: rotate(90deg);
    color: var(--primary-green);
}

.footer-brand {
    margin-bottom: 25px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    display: inline-block;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.footer-logo span {
    color: white;
}

.footer-tagline {
    color: #bbb;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 300px;
}

.contact-info-footer {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #ddd;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: var(--primary-green);
    margin-right: 15px;
    margin-top: 4px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.social-btn:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(100, 150, 35, 0.4);
}

.social-btn:hover::before {
    transform: scale(1);
}

.google-map {
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-green);
}

.google-map iframe {
    width: 100%;
    height: 200px;
    border: none;
    display: block;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.footer-bottom p {
    color: #bbb;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-green);
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.payment-icon {
    width: 40px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 0.8rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }
.footer-column:nth-child(5) { animation-delay: 0.5s; }
/* <!--AAAAA!!! FOOTER ENDS !!!AAAAA--> */

/* <!--AAAAA!!! RESPONSIVE STYLES STARTS !!!AAAAA--> */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    
    .footer-column:last-child {
        grid-column: 1 / -1;
        margin-top: 30px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    
    .footer-column:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ultra-premium-footer {
        padding: 50px 0 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (min-width: 993px) {
    .services-section, 
    .faq-section,
    .why-choose-us-section {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .services-grid {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .faq-container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .why-choose-container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .section-title,
    .why-choose-header {
        max-width: 100%;
        padding: 0 40px;
    }
}

/* Mobile Header Fixes */
@media (max-width: 992px) {
    body {
        padding-top: 70px;
    }
    
    .header-container {
        flex-direction: row;
        height: 70px;
        position: fixed;
        align-items: center;
    }
    
    .logo-column {
        width: auto;
        min-width: auto;
        padding: 0 15px;
        box-shadow: none;
        border-bottom: none;
        height: 70px;
        flex-shrink: 0;
    }
    
    .logo {
        padding: 0;
        justify-content: flex-start;
    }
    
    .logo-icon {
        width: 120px;
        height: auto;
    }
    
    .top-bar {
        display: none;
    }
    
    .right-column {
        flex: 1;
        height: 70px;
    }
    
    .navbar {
        height: 70px;
        background: transparent;
        box-shadow: none;
    }
    
    .nav-content {
        padding: 0 15px;
        justify-content: flex-end;
        height: 100%;
    }
    
    .contact-info {
        display: none;
    }
    
    /* Mobile Header Additional Elements */
    .mobile-contact-info {
        display: flex;
    }
    
    .mobile-social-icons {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 8px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: static;
        transform: none;
        background: var(--light-blue);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-section {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .about-section-title {
        font-size: 28px;
    }
    
    .about-image-container, .about-content-container {
        min-width: 100%;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
    
    .brands-title {
        font-size: 2.5rem;
    }
    
    .brand-card {
        padding: 30px 20px;
        height: 220px;
    }
    
    .brand-logo {
        width: 140px;
        height: 140px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-card {
        padding: 30px 25px;
    }
    
    .why-choose-header-inner {
        gap: 15px;
    }
    
    .why-choose-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .mobile-icon {
        font-size: 1.5rem;
    }
    
    .mobile-icon.screen::before { font-size: 2rem; }
    .mobile-icon.battery::before { font-size: 1.7rem; }
    .mobile-icon.mic::before { font-size: 1.4rem; }
    .mobile-icon.receiver::before { font-size: 1.6rem; }
    .mobile-icon.charging-jack::before { font-size: 1.8rem; }
    .mobile-icon.speaker::before { font-size: 1.7rem; }
    .mobile-icon.back-panel::before { font-size: 1.6rem; }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 0 15px;
    }
    
    .slide-content {
        flex-direction: column;
        height: 80%;
        width: 85%;
    }
    
    .text-content, .image-content {
        flex: none;
    }
    
    .text-content {
        padding: 25px;
    }
    
    .service-title {
        font-size: 2.2rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .image-content {
        padding: 20px;
    }
    
    .service-image {
        max-height: 200px;
    }
    
    .slider-arrows {
        padding: 0 15px;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .brand-card {
        padding: 25px 15px;
        height: 200px;
    }
    
    .brand-logo {
        width: 120px;
        height: 120px;
    }
    
    .why-choose-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 70px;
    }
    
    .logo-column {
        padding: 0 10px;
    }
    
    .nav-content {
        padding: 0 10px;
    }
    
    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
    }
    
    .nav-menu {
        top: 70px;
    }
    
    .slider-arrows {
        display: none;
    }
    
    .service-counter {
        top: 20px;
        right: 20px;
        font-size: 0.9rem;
    }
    
    .slider-nav {
        bottom: 20px;
    }
    
    .slide-content {
        width: 90%;
        height: 75%;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .text-content {
        padding: 20px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-card {
        padding: 20px 10px;
        height: 180px;
    }
    
    .brand-logo {
        width: 100px;
        height: 100px;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .why-choose-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 1024px) {
    .slide-content {
        width: 90%;
        height: 75%;
    }
    
    .service-title {
        font-size: 2.8rem;
    }
    
    .mobile-device {
        display: none;
    }
}

@media (max-width: 768px) {
    .faq-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }
}

/* Responsive Styles for Contact Section */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .contact-left-column,
    .contact-right-column {
        padding: 30px;
    }
    
    .contact-left-column h3,
    .contact-right-column h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .contact-us-section {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-detail-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-icon-box {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .contact-left-column,
    .contact-right-column {
        padding: 25px 20px;
    }
    
    .contact-left-column h3,
    .contact-right-column h3 {
        font-size: 1.4rem;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
}
/* <!--AAAAA!!! RESPONSIVE STYLES ENDS !!!AAAAA--> */


/* <!--AAAAA!!! BANNER SECTION STARTS !!!AAAAA--> */
.banner-section {
    background: linear-gradient(rgba(100, 150, 35, 0.9), rgba(80, 130, 25, 0.8)), 
                url('https://mobilehospitalindia.in/images/bannerBg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb span {
    color: white;
    font-weight: 600;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles for banner */
@media (max-width: 768px) {
    .banner-section {
        padding: 60px 20px;
        min-height: 250px;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .breadcrumb {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .banner-section {
        padding: 50px 20px;
        min-height: 200px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
}
/* <!--AAAAA!!! BANNER SECTION ENDS !!!AAAAA--> */












/* <!--AAAAA!!! INSTAGRAM REELS SECTION STARTS !!!AAAAA--> */
.instagram-reels-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.instagram-reels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(225, 48, 108, 0.3) 50%, 
        transparent 100%);
}

.premium-title {
    text-align: center;
    margin-bottom: 60px;
}

.premium-title h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #405DE6, #833AB4, #E1306C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(225, 48, 108, 0.1);
}

.premium-title .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.instagram-reels-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.reel-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(225, 48, 108, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.reel-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(225, 48, 108, 0.15);
    border-color: rgba(225, 48, 108, 0.3);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #405DE6, #833AB4, #E1306C);
    z-index: 2;
}

.reel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(90deg, #ffffff 0%, #fafafa 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.reel-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-pic.premium-gradient {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #405DE6, #833AB4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(64, 93, 230, 0.3);
    position: relative;
    overflow: hidden;
}

.profile-pic.premium-gradient::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transform: rotate(30deg);
}

.profile-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.profile-handle {
    font-size: 13px;
    color: #8e8e8e;
    font-weight: 500;
}

.reel-badge {
    background: linear-gradient(45deg, #E1306C, #FD1D1D);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.reel-badge.trending {
    background: linear-gradient(45deg, #405DE6, #5851DB);
}

.reel-badge.popular {
    background: linear-gradient(45deg, #FFDC80, #FCAF45);
}

.reel-video.premium-video {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #000;
}

.instagram-embed-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.instagram-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.reel-video:hover .play-overlay {
    opacity: 1;
}

.play-button-premium {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #405DE6, #833AB4, #E1306C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.reel-video:hover .play-button-premium {
    transform: scale(1);
}

.play-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.reel-actions.premium-actions {
    display: flex;
    justify-content: space-between;
    padding: 20px 24px;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.reel-action-btn {
    background: none;
    border: none;
    color: #262626;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reel-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #405DE6, #833AB4);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.reel-action-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.2);
}

.reel-action-btn:hover::before {
    opacity: 1;
}

.reel-action-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.reel-action-btn:hover i {
    transform: scale(1.2);
}

.reel-action-btn .count {
    font-size: 14px;
    font-weight: 600;
    font-feature-settings: "tnum";
}

.like-btn:hover {
    color: #E1306C !important;
}

.comment-btn:hover {
    color: #405DE6 !important;
}

.share-btn:hover {
    color: #833AB4 !important;
}

.save-btn:hover {
    color: #FCAF45 !important;
}

.reel-caption.premium-caption {
    padding: 24px;
    background: white;
}

.caption-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.caption-username {
    font-size: 15px;
    font-weight: 700;
    color: #262626;
}

.caption-time {
    font-size: 12px;
    color: #8e8e8e;
    font-weight: 500;
}

.reel-caption p {
    color: #262626;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.reel-tags.premium-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background: linear-gradient(45deg, #f0f8ff, #e8f4ff);
    color: #405DE6;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(64, 93, 230, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(64, 93, 230, 0.3);
}

.reel-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat {
    color: #8e8e8e;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.stat i {
    font-size: 11px;
}

.instagram-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 50px auto;
    max-width: 800px;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #405DE6, #833AB4);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(64, 93, 230, 0.3);
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(64, 93, 230, 0.4);
}

.nav-dots {
    display: flex;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: linear-gradient(45deg, #405DE6, #E1306C);
    transform: scale(1.3);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.instagram-cta.premium-cta {
    max-width: 800px;
    margin: 80px auto 0;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 30px;
    border: 1px solid rgba(225, 48, 108, 0.1);
    box-shadow: 0 20px 60px rgba(225, 48, 108, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #405DE6, #833AB4, #E1306C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 48px;
    box-shadow: 0 20px 40px rgba(225, 48, 108, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
}

.cta-title {
    font-size: 32px;
    color: #262626;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(45deg, #405DE6, #833AB4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.insta-follow-btn.premium-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #405DE6, #833AB4, #E1306C);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.3);
    position: relative;
    overflow: hidden;
}

.insta-follow-btn.premium-follow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #E1306C, #FD1D1D);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-follow-btn.premium-follow-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(225, 48, 108, 0.4);
}

.insta-follow-btn.premium-follow-btn:hover::before {
    opacity: 1;
}

.insta-follow-btn.premium-follow-btn i,
.insta-follow-btn.premium-follow-btn span {
    position: relative;
    z-index: 1;
}

.cta-note {
    color: #8e8e8e;
    font-size: 14px;
    margin-top: 25px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .instagram-reels-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .instagram-reels-section {
        padding: 70px 15px;
    }
    
    .instagram-reels-container {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .reel-video.premium-video {
        height: 350px;
    }
    
    .premium-title h2 {
        font-size: 2.5rem;
    }
    
    .instagram-cta.premium-cta {
        padding: 40px 25px;
        margin-top: 60px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .reel-video.premium-video {
        height: 300px;
    }
    
    .reel-header,
    .reel-actions.premium-actions,
    .reel-caption.premium-caption {
        padding: 18px;
    }
    
    .reel-actions.premium-actions {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .reel-action-btn {
        padding: 8px 12px;
    }
    
    .insta-follow-btn.premium-follow-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .instagram-navigation {
        gap: 20px;
        margin: 40px auto;
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
    }
}
/* <!--AAAAA!!! INSTAGRAM REELS SECTION ENDS !!!AAAAA--> */






/* iPhone Repair in Delhi Section - STARTS */
.iphone-professional-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.iphone-professional-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(100, 150, 35, 0.05) 0%, rgba(100, 150, 35, 0) 70%);
    pointer-events: none;
}

.iphone-professional-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(100, 150, 35, 0.03) 0%, rgba(100, 150, 35, 0) 70%);
    pointer-events: none;
}

.professional-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header-professional {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #649623;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-tag i {
    font-size: 1.1rem;
}

.section-title-professional {
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle-professional {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-card-professional {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.content-inner {
    padding: 60px;
}

.content-inner p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    text-align: justify;
    position: relative;
    padding-left: 20px;
}

.content-inner p:last-child {
    margin-bottom: 0;
}

.content-inner p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #649623;
    border-radius: 50%;
}

.content-footer-professional {
    background: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    padding: 40px 60px;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: #649623;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.info-item i {
    color: #649623;
    font-size: 1.5rem;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-btn {
    background: #649623;
    color: white;
}

.primary-btn:hover {
    background: #55801d;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(100, 150, 35, 0.3);
}

.secondary-btn {
    background: white;
    color: #649623;
    border-color: #649623;
}

.secondary-btn:hover {
    background: #649623;
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-inner {
        padding: 40px;
    }
    
    .content-footer-professional {
        padding: 40px;
    }
    
    .footer-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .iphone-professional-section {
        padding: 60px 0;
    }
    
    .section-title-professional {
        font-size: 2.4rem;
    }
    
    .section-subtitle-professional {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .content-inner {
        padding: 30px;
    }
    
    .content-inner p {
        font-size: 1.05rem;
        line-height: 1.7;
        padding-left: 15px;
    }
    
    .content-footer-professional {
        padding: 30px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title-professional {
        font-size: 2rem;
    }
    
    .section-tag {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .content-inner {
        padding: 25px 20px;
    }
    
    .content-inner p {
        font-size: 1rem;
        line-height: 1.6;
        padding-left: 12px;
    }
    
    .content-inner p::before {
        width: 4px;
        height: 4px;
        top: 10px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .info-item i {
        margin: 0 auto 10px;
    }
}
/* iPhone Repair in Delhi Section - ENDS */

