/* ========================================
   AIKON AVIATION ACADEMY - STYLE.CSS
   Author: Aikon Aviation Academy
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #340166;
    --primary-dark: #25004a;
    --primary-light: #4a0a8a;
    --accent-color: #c58509;
    --accent-dark: #a06d07;
    --accent-light: #e09b1f;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --bg-light: #f8f6fb;
    --bg-section: #faf9fc;
    --border-color: #e9e4f0;
    --shadow-sm: 0 2px 10px rgba(52, 1, 102, 0.08);
    --shadow-md: 0 8px 30px rgba(52, 1, 102, 0.12);
    --shadow-lg: 0 15px 50px rgba(52, 1, 102, 0.18);
    --shadow-accent: 0 8px 25px rgba(197, 133, 9, 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

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

ul {
    list-style: none;
}

.section-padding {
    padding: 100px 0;
}

.text-accent {
    color: var(--accent-color);
    position: relative;
}

/* ===== COMMON SECTION STYLES ===== */
.section-header {
    margin-bottom: 60px;
}

.section-tagline {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding: 0 35px;
}

.section-tagline::before,
.section-tagline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 25px;
    height: 2px;
    background: var(--accent-color);
}

.section-tagline::before {
    left: 0;
}

.section-tagline::after {
    right: 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== CUSTOM BUTTONS ===== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    transition: var(--transition);
    z-index: -1;
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-primary-custom:hover {
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--white);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-light-custom {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--white);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-light-custom:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.btn-accent-custom {
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--accent-color);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-accent-custom:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
	margin-bottom: 0px;
}

.top-bar-info li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info i {
    color: var(--accent-color);
    font-size: 14px;
}

.top-bar-info a {
    color: var(--white);
    font-size: 13px;
}

.top-bar-info a:hover {
    color: var(--accent-color);
}

.top-bar-social {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin: 0;
}

.top-bar-social a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.main-header .navbar {
    padding: 1px 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    transform: rotate(-15deg);
}

.navbar-brand:hover .logo-icon {
    transform: rotate(0deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 30px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO CAROUSEL ===== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 1, 102, 0.92) 0%, rgba(52, 1, 102, 0.7) 50%, rgba(52, 1, 102, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

.hero-tagline {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(197, 133, 9, 0.15);
    border-left: 3px solid var(--accent-color);
    border-radius: 4px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(197, 133, 9, 0.3);
    z-index: -1;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background: var(--white) !important;
    border: 2px solid var(--white) !important;
    opacity: 0.5;
    transition: var(--transition);
    margin: 0 6px;
}

.carousel-indicators button.active {
    opacity: 1;
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    width: 35px !important;
    border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--accent-color);
    opacity: 1;
}

/* ===== OFFER BANNER ===== */
.offer-banner {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.offer-banner-1 {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 36px;
    box-shadow: var(--shadow-accent);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.offer-text {
    text-align: center;
    flex: 1;
    min-width: 280px;
}

.offer-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.offer-discount {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-accent);
}

.flat-text,
.off-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.percent-text {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-heading);
}

.offer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.offer-deco-1,
.offer-deco-2,
.offer-deco-3 {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    font-size: 150px;
}

.offer-deco-1 {
    top: -40px;
    left: -30px;
    transform: rotate(-25deg);
}

.offer-deco-2 {
    bottom: -30px;
    right: 50px;
    font-size: 80px;
    animation: float 3s ease-in-out infinite;
}

.offer-deco-3 {
    top: 20px;
    right: 20%;
    font-size: 100px;
    animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Offer Banner 2 */
.offer-banner-2 {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    padding: 40px 0;
}

.offer-content-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.offer-left,
.offer-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.offer-icon-2 {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.offer-title-2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.offer-divider {
    width: 2px;
    height: 50px;
    background: rgba(255, 255, 255, 0.4);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
    padding-right: 50px;
    padding-bottom: 50px;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image-main img {
    width: 100%;
    /* height: 500px; */
    object-fit: cover;
    transition: var(--transition);
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-image-sub img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--accent-color);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-accent);
    text-align: center;
}

.about-experience h3 {
    color: var(--white);
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.about-experience p {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    margin: 5px 0 0;
    line-height: 1.3;
}

.about-content {
    /* padding-left: 30px; */
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    transform: rotateY(180deg);
}

.feature-text h5 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-text p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--bg-section);
    position: relative;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-image {
    position: relative;
    overflow: hidden;
    /* height: 240px; */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}

.service-body {
    padding: 28px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--accent-color);
}

.service-desc {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-features {
    margin-bottom: 22px;
}

.service-features li {
    color: var(--text-dark);
    font-size: 14px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--accent-color);
    font-size: 16px;
}

.btn-service-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.btn-service-custom:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    background: var(--white);
}

.why-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: var(--transition);
    position: relative;
}

.why-icon::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px dashed var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    transform: scale(1.05);
}

.why-card:hover .why-icon::after {
    opacity: 1;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.why-card h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.why-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ===== COUNTER SECTION ===== */
.counter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)), url('../images/counter-bg.jpg');
    background-blend-mode: overlay;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 1, 102, 0.9), rgba(74, 10, 138, 0.85));
}

.counter-section .container {
    position: relative;
    z-index: 2;
}

.counter-card {
    text-align: center;
    padding: 20px;
    color: var(--white);
    transition: var(--transition);
}

.counter-card:hover {
    transform: translateY(-5px);
}

.counter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.counter-card:hover .counter-icon {
    background: var(--accent-color);
    color: var(--white);
    transform: rotate(360deg);
}

.counter-number {
    color: var(--white);
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.counter-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
    background: var(--bg-section);
}

.work-card {
    background: var(--white);
    padding: 40px 25px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    height: 100%;
    border: 1px solid var(--border-color);
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.work-step {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 50px;
    font-weight: 800;
    color: var(--bg-light);
    line-height: 1;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.work-card:hover .work-step {
    color: var(--accent-color);
    opacity: 0.3;
}

.work-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: var(--transition);
    transform: rotate(-10deg);
}

.work-card:hover .work-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    transform: rotate(0deg) scale(1.05);
}

.work-card h4 {
    font-size: 19px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.work-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--white);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 1, 102, 0.85), rgba(197, 133, 9, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 40px;
    transform: scale(0);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--accent-color);
    font-size: 50px;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    flex-shrink: 0;
}

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

.author-info h5 {
    font-size: 17px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.author-info span {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-control-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.testimonial-control-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--white);
}

.faq-content {
    padding-right: 30px;
}

.faq-image {
    margin-top: 30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-image img {
    width: 100%;
    transition: var(--transition);
}

.faq-image:hover img {
    transform: scale(1.05);
}

.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
}

.faq-accordion .accordion-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    padding: 18px 25px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--white);
    border: none;
    font-size: 16px;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: '\F4FE';
    font-family: 'bootstrap-icons';
    font-size: 16px;
    transform: rotate(0deg);
    transition: var(--transition);
    background-color: var(--bg-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    content: '\F4FE';
    background-color: var(--accent-color);
    color: var(--white);
}

.faq-accordion .accordion-body {
    padding: 20px 25px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    background: var(--bg-section);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--bg-section);
}

.contact-info-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 40px 30px;
    border-radius: var(--radius-md);
    color: var(--white);
    height: 100%;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-info-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(197, 133, 9, 0.1);
    border-radius: 50%;
}

.contact-info-wrapper::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(197, 133, 9, 0.08);
    border-radius: 50%;
}

.contact-info-title {
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.contact-info-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(197, 133, 9, 0.2);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-item:hover .contact-info-icon {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.05);
}

.contact-info-content h5 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-content a,
.contact-info-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    word-break: break-word;
}

.contact-info-content a:hover {
    color: var(--accent-color);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 1px solid var(--border-color);
}

.contact-form-title {
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.form-group-custom {
    position: relative;
}

.form-group-custom label {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-group-custom .form-control {
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--bg-section);
}

.form-group-custom .form-control:focus {
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(197, 133, 9, 0.1);
}

.form-group-custom textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--primary-dark);
    color: var(--white);
}

.footer-top {
    padding: 70px 0 40px;
    position: relative;
}

.footer-widget .footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-widget .logo-title {
    color: var(--white);
}

.footer-widget .logo-subtitle {
    color: var(--accent-color);
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

.footer-links li,
.footer-contact-list li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links i {
    font-size: 12px;
    color: var(--accent-color);
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    align-items: flex-start;
}

.footer-contact-list i {
    color: var(--accent-color);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.7);
    word-break: break-word;
}

.footer-contact-list a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.copyright strong {
    color: var(--accent-color);
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    margin: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

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

/* ===== FLOATING ICONS ===== */
.floating-icon {
    position: fixed;
    bottom: 130px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    z-index: 9999;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    animation: floatIcon 2.5s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.whatsapp-float {
    left: 25px;
    background: #25D366;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: var(--white);
    transform: scale(1.1);
}

.call-float {
    right: 25px;
    background: var(--accent-color);
    animation-delay: 0.5s;
}

.call-float:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.floating-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    animation: pulseRing 1.5s ease-in-out infinite;
}

.whatsapp-float::before {
    background: #25D366;
}

.call-float::before {
    background: var(--accent-color);
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.float-tooltip {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    font-weight: 500;
}

.whatsapp-float .float-tooltip {
    left: calc(100% + 12px);
}

.whatsapp-float .float-tooltip::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: var(--primary-color);
}

.call-float .float-tooltip {
    right: calc(100% + 12px);
}

.call-float .float-tooltip::before {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--primary-color);
}

.floating-icon:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Scroll to top */
.scroll-top-btn {
    position: fixed;
    bottom: 10px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}
.our-gl{
	margin-bottom:30px;
}
.our-gl img{
	width:100%;
	border-radius:10px;
}
.cu-tx-rt{
	justify-content:right;
}
/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Desktop */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }
    .section-title {
        font-size: 36px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }
    .hero-slide {
        min-height: 550px;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-desc {
        font-size: 16px;
    }
    .section-title {
        font-size: 32px;
    }
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-md);
    }
    .navbar-nav .nav-link {
        padding: 10px 15px !important;
    }
    .navbar-nav .nav-link::before {
        display: none;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: var(--bg-light);
        border-radius: var(--radius-sm);
        padding-left: 18px !important;
    }
    .btn-primary-custom {
        margin-top: 10px;
    }
    .about-content {
        padding-left: 0;
        margin-top: 50px;
    }
    .about-image-wrapper {
        padding-right: 30px;
        padding-bottom: 30px;
        max-width: 500px;
        margin: 0 auto;
    }
    .about-experience {
        left: 0;
        top: 20px;
    }
    .faq-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .counter-number {
        font-size: 40px;
    }
    .offer-title {
        font-size: 24px;
    }
    .offer-title-2 {
        font-size: 18px;
    }
    .offer-divider {
        display: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
	.cu-ds-nn{
		display:none!important
	}
	.cu-tx-rt{
	justify-content:center;
}
.cu-lg-wdth{
	width:80px;
}
.top-bar-info{
	padding-left:0px;
}
    .section-padding {
        padding: 60px 0;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .section-title {
        font-size: 26px;
    }
    .section-tagline {
        font-size: 12px;
        padding: 0 25px;
        letter-spacing: 2px;
    }
    .section-tagline::before,
    .section-tagline::after {
        width: 18px;
    }
    .hero-slide {
        min-height: 480px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-desc {
        font-size: 15px;
    }
    .hero-tagline {
        font-size: 13px;
        padding: 6px 15px;
    }
    .hero-buttons {
        gap: 10px;
    }
    .hero-buttons .btn {
        padding: 11px 22px;
        font-size: 14px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    .carousel-control-prev {
        left: 10px;
    }
    .carousel-control-next {
        right: 10px;
    }
    .offer-content {
        gap: 20px;
    }
    .offer-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
    .offer-title {
        font-size: 20px;
    }
    .percent-text {
        font-size: 28px;
    }
    .flat-text, .off-text {
        font-size: 15px;
    }
    .offer-content-2 {
        gap: 20px;
    }
    .offer-left, .offer-right {
        flex-direction: column;
        text-align: center;
    }
    .offer-title-2 {
        font-size: 16px;
    }
    .offer-icon-2 {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .about-image-main img {
        height: 350px;
    }
    .about-image-sub img {
        height: 180px;
    }
    .about-experience {
        padding: 15px 18px;
        top: 15px;
    }
    .about-experience h3 {
        font-size: 28px;
    }
    .about-experience p {
        font-size: 11px;
    }
    .feature-item {
        gap: 15px;
        margin-bottom: 20px;
    }
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .feature-text h5 {
        font-size: 16px;
    }
    .feature-text p {
        font-size: 13px;
    }
    .service-body {
        padding: 22px;
    }
    .service-title {
        font-size: 18px;
    }
    .why-card {
        padding: 30px 20px;
    }
    .why-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
    .counter-card {
        padding: 15px 10px;
    }
    .counter-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    .counter-number {
        font-size: 32px;
    }
    .counter-text {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    .work-card {
        padding: 35px 20px 25px;
    }
    .work-step {
        font-size: 40px;
        top: 10px;
        right: 15px;
    }
    .work-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    .testimonial-card {
        padding: 35px 25px 25px;
    }
    .testimonial-text {
        font-size: 14px;
    }
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    .contact-info-title,
    .contact-form-title {
        font-size: 22px;
    }
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 130px;
    }
    .whatsapp-float {
        left: 18px;
    }
    .call-float {
        right: 18px;
    }
    .scroll-top-btn {
        bottom: 10px;
        right: 18px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .float-tooltip {
        display: none;
    }
    .footer-top {
        padding: 50px 0 30px;
    }
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
        gap: 15px;
        flex-wrap: wrap;
    }
    .copyright {
        text-align: center;
    }
    .faq-accordion .accordion-button {
        font-size: 14px;
        padding: 15px 18px;
    }
    .map-wrapper iframe {
        height: 300px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    .section-title {
        font-size: 24px;
    }
    .offer-title {
        font-size: 18px;
    }
    .percent-text {
        font-size: 24px;
    }
    .logo-title {
        font-size: 20px;
    }
    .logo-subtitle {
        font-size: 9px;
    }
    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .btn-primary-custom,
    .btn-outline-custom,
    .btn-light-custom,
    .btn-accent-custom {
        padding: 11px 22px;
        font-size: 13px;
    }
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}
