/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #003366;
    --secondary-color: #ff9900;
    --accent-color: #00cc99;
    --text-color: #333333;
    --light-color: #f5f5f5;
    --dark-color: #222222;
    --gray-color: #888888;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
}

.nav-links ul {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width var(--transition-speed) ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all var(--transition-speed) ease;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assests/upgrade.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.8), rgba(0, 204, 153, 0.8));
    z-index: -1;
    opacity: 0.6;
}

.hero-content {
    max-width: 1000px;
    animation: fadeIn 1.5s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 8rem 5% 6rem;
    background-color: white;
}

.feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.05), rgba(0, 204, 153, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Tech Showcase */
.tech-showcase {
    padding: 8rem 5%;
    background-color: var(--primary-color);
    color: white;
}

.tech-content {
    max-width: 1400px;
    margin: 0 auto;
}

.tech-showcase h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tech-icon i {
    font-size: 1.5rem;
    color: white;
}

.tech-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* 3D Animation   */
:root {
    --primary: #00a8ff;
    --secondary: #192a56;
    --accent: #6c5ce7;
    --light: #f5f6fa;
    --dark: #2f3640;
    --success: #4cd137;
    --warning: #fbc531;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0c0c14;
    color: var(--light);
    overflow-x: hidden;
    perspective: 1000px;
}

.elevator-text-heading {
    text-align: center;
    margin-top: 40px;
    font-family: 'Segoe UI', sans-serif;
    padding: 20px;
    color: white;
}

.animated-heading {
    font-size: 2.8rem;
    font-weight: bold;
    color: #00d1ff;
    text-transform: uppercase;
    animation: glow-in 1.5s ease-out forwards;
    opacity: 0;
}

.animated-subtext {
    font-size: 1.2rem;
    color: #ffffffcc;
    margin-top: 10px;
    animation: fade-in 2s ease 1.2s forwards;
    opacity: 0;
}

@keyframes glow-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
        text-shadow: none;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 0 0 10px #00d1ff, 0 0 20px #00d1ff;
    }
}

@keyframes fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .container {
        grid-template-columns: 1fr 1fr;
    }
}

header {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1d1d2b, #30304d);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.description {
    color: #ddd;
    line-height: 1.6;
}

/* Elevator Building and Scene */
.elevator-scene {
    position: relative;
    height: 600px;
    background: linear-gradient(180deg, #0f0f1a, #1a1a2a);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform-style: preserve-3d;
}

.building {
    position: absolute;
    width: 90%;
    height: 90%;
    left: 5%;
    top: 5%;
    background: rgba(40, 40, 70, 0.5);
    border: 2px solid rgba(100, 100, 255, 0.3);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    transform-style: preserve-3d;
}

.elevator-shaft {
    position: relative;
    width: 120px;
    height: 100%;
    background: rgba(20, 20, 40, 0.7);
    border-left: 1px solid rgba(100, 100, 255, 0.3);
    border-right: 1px solid rgba(100, 100, 255, 0.3);
    box-shadow: inset 0 0 20px rgba(0, 168, 255, 0.1);
    transform-style: preserve-3d;
}

.floor {
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(100, 100, 255, 0.5);
    left: 0;
}

.floor-label {
    position: absolute;
    right: 130px;
    font-size: 14px;
    color: var(--primary);
    text-shadow: 0 0 5px rgba(0, 168, 255, 0.5);
}

.elevator-car {
    position: absolute;
    width: 100px;
    height: 150px;
    left: 10px;
    bottom: 50px;
    background: linear-gradient(135deg, #2c2c54, #474787);
    border-radius: 5px;
    border: 1px solid rgba(100, 100, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.3);
    transition: bottom 2s cubic-bezier(0.3, 0, 0.3, 1);
    transform-style: preserve-3d;
}

.elevator-doors {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.door {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50, #4a69bd);
    border: 1px solid rgba(100, 100, 255, 0.7);
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.door.left {
    transform-origin: left;
}

.door.right {
    transform-origin: right;
}

.door.open.left {
    transform: translateX(-100%);
}

.door.open.right {
    transform: translateX(100%);
}

.elevator-interior {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    background: rgba(20, 20, 30, 0.9);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.led-screen {
    width: 90%;
    height: 40px;
    background: #000;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
}

.led-text {
    position: absolute;
    white-space: nowrap;
    color: var(--primary);
    font-size: 16px;
    animation: scroll 15s linear infinite;
    text-shadow: 0 0 5px rgba(0, 168, 255, 0.8);
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.control-panel {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

/* Mobile Control Interface */
.mobile-control {
    position: relative;
    background: linear-gradient(135deg, #192a56, #273c75);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    height: 600px;
    overflow: hidden;
}

.mobile-screen {
    background: #0a0a1a;
    flex: 1;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 12px;
    color: #aaa;
}

.app-header {
    text-align: center;
    margin-bottom: 20px;
}

.app-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 15px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-name {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
}

.elevator-status {
    background: rgba(20, 20, 40, 0.7);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(100, 100, 255, 0.3);
}

.status-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.status-label {
    color: #888;
}

.status-value {
    color: var(--primary);
    font-weight: bold;
}

.floor-selector {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.floor-btn {
    background: rgba(40, 40, 70, 0.8);
    border: 1px solid rgba(100, 100, 255, 0.3);
    border-radius: 10px;
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floor-btn:hover,
.floor-btn.active {
    background: var(--primary);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 168, 255, 0.5);
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: auto;
}

.action-btn {
    background: linear-gradient(135deg, #2c3e50, #4a69bd);
    border: none;
    border-radius: 10px;
    color: white;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.action-btn.call {
    background: linear-gradient(135deg, var(--primary), #0097e6);
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.action-btn:active {
    transform: translateY(0);
}

/* Animations and Effects */
.glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.2) 0%, rgba(0, 168, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.7;
    animation: float 10s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(30px);
        opacity: 0;
    }
}

.notification {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 168, 255, 0.2);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 10px 20px;
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.notification.show {
    opacity: 1;
}

/* Features List */
.features {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #1d1d2b, #30304d);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    background: rgba(40, 40, 70, 0.5);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(100, 100, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-card h3 {
    color: #00bfff;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-desc {
    color: white;
    font-size: 14px;
    line-height: 1.6;
}

/* Upgrade Process */
.upgrade-process {
    padding: 8rem 5%;
    background-color: white;
}

.upgrade-text {
    max-width: 750px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
}

.upgrade-heading {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .upgrade-heading {
        font-size: 1.6rem;
    }
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.process-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.step-content {
    width: 45%;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.process-step:nth-child(odd) .step-content {
    margin-left: auto;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;   /* darker color */
    margin-top: 8px;
}

/* Call to Action Section */
.cta-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--primary-color), #001a33);
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.cta-btn.primary {
    background: var(--secondary-color);
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-btn.primary:hover {
    background: #ff8800;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.image-card {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform var(--transition-speed) ease;
}

.image-card:hover {
    transform: perspective(1000px) rotateY(0);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* === TESTIMONIALS SECTION === */
.testimonial-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.testimonial-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #ff9800;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #103466;
    padding: 25px 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.quote-icon {
    font-size: 40px;
    color: #ff9800;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 30px 0 20px 0;
}

.rating {
    font-size: 18px;
    color: #ff9800;
    margin-bottom: 15px;
}

.client-info {
    border-top: 1px solid #3a5a86;
    padding-top: 10px;
}

.client-name {
    font-weight: bold;
    font-size: 18px;
}

.client-position {
    font-size: 14px;
    opacity: 0.8;
}


/* === FAQ Section ==== */
.faq-section {
    padding: 8rem 5%;
    background-color: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform var(--transition-speed) ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease, padding var(--transition-speed) ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 300px;
}

/* Footer Styles */
footer {
    background-color: #013b73;
    /* Deep Blue */
    color: #fff;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-logo {
    flex: 1 1 250px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-logo h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 1rem;
    color: #dcdcdc;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: orange;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.7rem;
    color: #ddd;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: orange;
}

.contact-info i {
    margin-right: 0.6rem;
    color: orange;
    min-width: 20px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #dcdcdc;
}

.social-icons {
    display: flex;
    gap: 0.7rem;
}

.social-icons a {
    width: 42px;          /* 🔹 icon ka size */
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 10;      /* 🔹 icon size */
    transition: all 0.3s ease;
}


.social-icons a:hover {
    background-color: orange;
    color: #013b73;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}