/* ==========================================================================
   HETU INFOTECH - Premium Master Stylesheet
   ========================================================================== */

:root {
    --primary: #FF6B00;       /* Brand Orange */
    --primary-glow: rgba(255, 107, 0, 0.2);
    --secondary: #23272A;     /* Dark Gray */
    --light-bg: #F8F9FA;      /* Off-White */
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --border-color: #EAEAEA;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

li {
    list-style: none;
}

/* --- Top Header Bar --- */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar-info span {
    margin-right: 20px;
}

.top-bar-info i {
    color: var(--primary);
    margin-right: 6px;
}

/* --- Sticky Modern Navigation --- */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* --- Premium Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-2px);
}

/* --- Inner Pages Hero Banner --- */
.inner-banner {
    background: linear-gradient(135deg, rgba(35,39,42,0.95) 0%, rgba(15,15,15,0.9) 100%), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 5% 8px;
    text-align: center;
    color: var(--white);
}

.inner-banner h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.inner-banner p {
    color: #AAA;
    font-size: 1.1rem;
}

/* --- CSS Only Auto-Sliding Banner Carousel (Homepage) --- */
.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background: var(--secondary);
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slideAnimation 15s infinite;
}

.slide {
    width: 33.333%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(26,26,26,0.9) 30%, rgba(26,26,26,0.4) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.2rem;
    color: #CCC;
    margin-bottom: 30px;
}

@keyframes slideAnimation {
    0%, 28% { transform: translateX(0); }
    33%, 61% { transform: translateX(-33.333%); }
    66%, 95% { transform: translateX(-66.666%); }
}

/* --- Section Global Layout --- */
section {
    padding: 90px 5%;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-size: 2.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin: 10px auto 0;
}

.section-title p {
    color: var(--text-muted);
}

/* --- Grid System --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* --- Cards UI & Hover Effects --- */
.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: var(--transition);
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* --- Tech Stacks Badges & Grid --- */
.tech-card {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
}

.tech-card:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 25px var(--primary-glow);
}

.tech-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 12px;
}

.home-tech-dark {
    background-color: #1e2229 !important; /* ??? ??? ?? ? ????? ??????????? ????? */
    text-align: center;
}

/* ??? ????? ????? ?????? ? ?????? ?????? ??? */
.home-tech-dark h2 {
    color: #ffffff !important;
}

.home-tech-dark .section-desc {
    color: #b0b5bc !important;
}

/* ??? ????? ????? ?????? ? ????????? ??? ?????? */
.home-tech-dark .tech-card {
    background: #282e38 !important; 
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.home-tech-dark .tech-card h4 {
    color: #ffffff !important; 
}
/* --- Inner Page Detail Visuals --- */
.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.service-detail-wrapper:nth-child(even) {
    direction: rtl;
}

.service-detail-wrapper:nth-child(even) .service-detail-text {
    direction: ltr;
}

.service-detail-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* --- Modern Footer --- */
footer {
    background: var(--secondary);
    color: #BCBCBC;
    padding: 70px 5% 20px;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info-list i {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .service-detail-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .service-detail-wrapper:nth-child(even) { direction: ltr; }
}

@media (max-width: 768px) {
    .main-header { flex-direction: column; gap: 15px; }
    .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .top-bar { display: none; }
    .slide-content h2 { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* --- Root Colors from Your Logo --- */
:root {
    --primary-color: #E28C33;   /* ?????? ???????? ?????? ??? */
    --secondary-color: #6E7173; /* ?????? ??? ???? ??? */
    --light-bg: #f9f9f9;
}

/* --- Premium Navigation Menu Styling --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo Styling Matched with Image */
.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color); /* HETU - Orange */
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary-color); /* INFOTECH - Grey */
    font-weight: 700;
}

/* Nav Links Base */
.nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Square Round Shape for Menu Items */
.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 8px; /* Smooth Rounded Square */
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect: Soft Orange Background & Orange Border */
.nav-links a:hover {
    background-color: rgba(226, 140, 51, 0.06); /* ??? ?????? ???? */
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Active Page Style: Permanent Brand Orange Box with Shadow */
.nav-links a.active {
    background-color: var(--primary-color); /* ??? ?????? ??????????? */
    color: #ffffff !important; /* ?????? ??????? */
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(226, 140, 51, 0.25); /* ???????? ?????? ???? */
}

/* --- Premium Back to Top Button Styling --- */
#backToTop {
    display: none; /* ???????? ????????? ????? */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 1.2rem;
    border: none;
    outline: none;
    background-color: var(--primary-color, #E28C33); /* ?????? ?????? ??? */
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%; /* ??????? ?????? ??? */
    box-shadow: 0 4px 15px rgba(226, 140, 51, 0.4); /* ?????? ????? ???? */
    transition: all 0.3s ease-in-out;
}

/* Hover ??????: ???? ?? ???? ??? ???? ??? ???? ??? ??? ???? (???? ???) ??? */
#backToTop:hover {
    background-color: var(--secondary-color, #6E7173); /* ?????? ??? ???? ??? */
    box-shadow: 0 6px 20px rgba(110, 113, 115, 0.4);
    transform: translateY(-5px); /* ????? ?????? ???????? */
}

/* --- Logo Image Integration Styling --- */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 45px; /* ?????? ???? ??????? ?????? ???? ??????? ??? ??? ?? */
    width: auto;  /* ????? ???? ??????? ???? (Maintain Aspect Ratio) */
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* ???? ??????: ???? ?? ???? ???? ???? ??? ??? */
.brand-logo:hover {
    transform: scale(1.03);
}

/* --- Services Section Styling --- */
.services-section {
    padding: 60px 8%;
   background: linear-gradient(180deg, rgba(226, 140, 51, 0.03) 0%, rgba(226, 140, 51, 0.06) 100%);
    text-align: center;
}

.services-section h2, .tech-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

/* ?????? ???? ?????? ?????? ????? ???????? */
.services-section h2::after, .tech-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color, #E28C33);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-desc {
    color: var(--secondary-color, #6E7173);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* ?-? ?? ???? ???? 4-Column Grid ????? */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* ?? ??????? 4 ????? */
    gap: 25px; /* ??????? ????? ????? */
}

/* Services Card Design */
.service-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px; /* ????? ?????? ???????? */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid var(--secondary-color, #6E7173); /* ???? ???? ???? ?????? */
    transition: all 0.3s ease-in-out;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color, #E28C33); /* ???? ?????? ????? */
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
    color: #333;
    font-size: 1.25rem;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Hover Effect: ???? ????? ?????? ?????? ???? ??? */
.service-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--primary-color, #E28C33);
    box-shadow: 0 10px 25px rgba(226, 140, 51, 0.15);
}


/* --- Technologies Section Styling --- */
/* --- Technologies Section Styling (Fixed for Both Pages) --- */
.tech-section {
    padding: 60px 8%;
    background-color: #1e2229; /* ??? ??? ???? ???????? ????? ?????? */
    text-align: center;
}

/* ??? ????? ????? ?????? ?????? ??? ???????????? */
.tech-section h2 {
    color: #ffffff !important;
}

.tech-section .section-desc {
    color: #b0b5bc !important;
}

/* --- Base Tech Card Layout (????? ???? ??? ??? ?? ???) --- */
.tech-card {
    background: var(--light-bg); /* ??????? ??????/???? ??????????? (????? ??? ??? ????) */
    padding: 25px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.tech-card h3 {
    color: var(--text-dark); /* ????? ??? ??? ?? ?????? ???? ??? ?????? ?????? */
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 10px;
}

.tech-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 12px;
}

.tech-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(226, 140, 51, 0.4);
}

/* --- Only Home Page Dark Tech Section Override --- */
.home-tech-dark {
    background-color: #1e2229 !important; 
    text-align: center;
}

.home-tech-dark h2 {
    color: #ffffff !important;
}

.home-tech-dark .section-desc {
    color: #b0b5bc !important;
}

/* ??? ????? ????? ??????? ??? ???? ?????? ?????? */
.home-tech-dark .tech-card {
    background: #282e38 !important; 
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.home-tech-dark .tech-card h4 {
    color: #ffffff !important; 
}

/* ?? ??? ????? ????? ???????? ????? ???? ???? ?????? ?????? ??? */
section.home-tech-dark .tech-card img,
.tech-section.home-tech-dark .tech-card img {
    width: 85px !important;       /* ????? ?????? (??? ????? ?? 90px ?? ??? ???) */
    height: 85px !important;      /* ????? ????? */
    min-width: 85px !important;   /* ????? ???? ???? */
    min-height: 85px !important;  /* ????? ???? ???? */
    margin-bottom: 20px !important;
    object-fit: contain !important;
    display: inline-block !important;
}

/* ???? ?????? */
section.home-tech-dark .tech-card:hover img {
    transform: scale(1.08) !important;
}
/* Responsive ???????? */
@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); } 
}
@media (max-width: 576px) {
    .grid-4 { grid-template-columns: 1fr; } 
}

/* --- Home About Section Styling --- */
.home-about-section {
    padding: 80px 8%;
    background-color: #f4f6f8;
}

.home-about-container {
    display: flex;
    align-items: center;
    gap: 50px; /* ???? ??? ??????? ????? ???????? ????? */
}

/* Left Side - Image Setup */
.home-about-left {
    flex: 1;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 12px; /* ????? ?????? ???????? */
    box-shadow: 0 15px 35px rgba(110, 113, 115, 0.15); /* ???? ???? ???? ?????? */
    border-left: 6px solid var(--primary-color, #E28C33); /* ???? ?????? ????? ?????? ???? */
    transition: transform 0.4s ease;
}

.about-img:hover {
    transform: scale(1.02); /* ???? ??? ?????? */
}

/* Right Side - Text Setup */
.home-about-right {
    flex: 1;
    text-align: left;
}

.home-about-right .sub-title {
    color: var(--primary-color, #E28C33);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 10px;
}

.home-about-right h2 {
    font-size: 2.3rem;
    color: #333;
    line-height: 1.3;
    margin-bottom: 20px;
}

.home-about-right p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Features List inside About */
.about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-features li {
    font-size: 1rem;
    color: #444;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li i {
    color: var(--primary-color, #E28C33); /* ?????? ??? ????? */
    font-size: 1.2rem;
}

/* Read More Button */
.btn-about-more {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--secondary-color, #6E7173); /* ???? ??? ???? ??? */
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(110, 113, 115, 0.2);
}

.btn-about-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-about-more:hover {
    background-color: var(--primary-color, #E28C33); /* ???? ????? ???? ?????? ??? */
    box-shadow: 0 6px 15px rgba(226, 140, 51, 0.3);
    transform: translateY(-2px);
}

.btn-about-more:hover i {
    transform: translateX(5px); /* ??? ???? ??? ???? */
}

/* Responsive Mobile Layout */
@media (max-width: 992px) {
    .home-about-container {
        flex-direction: column; /* ?????? ??? ?????????? ???? ??? ??? ???????? ???? ??? ??? */
        gap: 35px;
    }
    .home-about-right h2 {
        font-size: 1.8rem;
    }
}


/* --- Why Choose Us Section Styling --- */
.why-choose-section {
    padding: 80px 8%;
    background-color: #ffffff;
}

.why-choose-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Side Text */
.why-choose-left {
    flex: 1.1;
    text-align: left;
}

.why-choose-left .sub-title {
    color: var(--primary-color, #E28C33);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 10px;
}

.why-choose-left h2 {
    font-size: 2.3rem;
    color: #333;
    line-height: 1.3;
    margin-bottom: 20px;
}

.why-choose-left p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 35px;
}

/* Feature Item Row */
.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-icon {
    background: rgba(226, 140, 51, 0.1);
    color: var(--primary-color, #E28C33);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Right Side Stats Grid (As per your Image layout) */
.why-choose-right {
    flex: 0.9;
}

.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-counter-card {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(110, 113, 115, 0.08);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.stat-card-icon {
    font-size: 2rem;
    color: var(--secondary-color, #6E7173);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.stat-counter-card h3 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-counter-card p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
    margin: 0;
}

/* ????? ??????? ??????: ?? ????? ??????? ?? ????? ??? ?????? ?? ???? ??? ???? */
.highlight-box {
    background: var(--primary-color, #E28C33) !important;
    border-color: var(--primary-color, #E28C33);
    box-shadow: 0 15px 30px rgba(226, 140, 51, 0.25);
}

.highlight-box h3, .highlight-box p, .highlight-box .stat-card-icon {
    color: #ffffff !important;
}

/* Hover Effect */
.stat-counter-card:not(.highlight-box):hover {
    transform: translateY(-5px);
    border-color: var(--primary-color, #ffd085);
    box-shadow: 0 15px 35px rgba(226, 140, 51, 0.08);
}
.stat-counter-card:not(.highlight-box):hover .stat-card-icon {
    color: var(--primary-color, #E28C33);
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(226, 140, 51, 0.35);
}

/* Responsive Setup */
@media (max-width: 992px) {
    .why-choose-container {
        flex-direction: column;
        gap: 40px;
    }
    .why-choose-left, .why-choose-right {
        width: 100%;
    }
}

/* --- Call to Action (CTA) Banner Styling --- */
.cta-banner-section {
    padding: 50px 8%;
    /* ???? ?????? ????? ??????? ??? ?????? ?????????? ??? */
    background: linear-gradient(135deg, var(--primary-color, #E28C33) 0%, #c97524 100%);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.cta-banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Left Content - Text */
.cta-text-content {
    text-align: left;
}

.cta-text-content h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-text-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Right Content - Button */
.btn-cta-connect {
    display: inline-block;
    padding: 14px 35px;
    background-color: #ffffff; /* ?????? ??? ???? ?????? ?? ???? ???? ??? */
    color: var(--primary-color, #E28C33); /* ??????? ???? ?????? ??? */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 30px; /* ???????? ????????? ??? */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.btn-cta-connect i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* Hover Effect: ??? ???? ???? ?????? ??????? ??? */
.btn-cta-connect:hover {
    background-color: var(--secondary-color, #6E7173); /* ???? ???? ??? */
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.btn-cta-connect:hover i {
    transform: translate(4px, -4px); /* ?????/????? ???? ?????? ????? ??? ??? ?????? */
}

/* Responsive Mobile Layout */
@media (max-width: 768px) {
    .cta-banner-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    .cta-text-content {
        text-align: center;
    }
    .cta-text-content h2 {
        font-size: 1.6rem;
    }
    .cta-text-content p {
        font-size: 0.95rem;
    }
    .btn-cta-connect {
        width: 100%;
        box-sizing: border-box;
    }
}


/* --- Footer Logo Styling --- */
.footer-logo-wrap {
    margin-bottom: 20px;
    text-align: left;
}

.footer-logo {
    height: 40px; /* ?????? ??? ??????? ?????? ???? ???? ??????? ??? ??? ?? */
    width: auto;  /* ????? ???? ??????? ???? (Maintain Aspect Ratio) */
    object-fit: contain;
    filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.2)); /* ???? ????? ???? ?????? */
}

/* --- Footer Social Icons Styling --- */
.footer-social-links {
    display: flex;
    gap: 12px; /* ??????? ????? ???????? ???????? */
    margin-top: 20px; /* ????? ?????? ????? */
}

.social-icon {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.08); /* ??????? ????? ????? ??????????? */
    color: #ffffff;
    border-radius: 50%; /* ??????? ?????? ??? */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

/* Hover Effects: ???? ?? ???? ? ??????? ??????? ??? ???? ??? */
.social-icon.whatsapp:hover {
    background-color: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transform: translateY(-3px);
}

.social-icon.facebook:hover {
    background-color: #1877F2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
    transform: translateY(-3px);
}

.social-icon.twitter:hover {
    background-color: #1DA1F2;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
    transform: translateY(-3px);
}

.social-icon.linkedin:hover {
    background-color: #0077B5;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
    transform: translateY(-3px);
}

.social-icon.youtube:hover {
    background-color: #FF0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
    transform: translateY(-3px);
}