* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 35px;
            width: auto;
        }

        nav {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        nav a {
            color: #333;
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #EF4444;
        }

        .contact-btn {
            background: #EF4444;
            padding: 8px 16px;
            border-radius: 25px;
            color: white !important;
            font-weight: 600;
        }

        .contact-btn:hover {
            background: #DC2626;
            color: white !important;
        }

        /* Hero Section */
        .hero {
            height: 400px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://aaraainfrastructure.com/blog/images/blog%20hero.webp');
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
            margin-top: 65px;
            padding: 0 20px;
        }

        .hero-subtitle {
            font-size: 9px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .hero h1 {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.2;
            max-width: 100%;
            margin-bottom: 20px;
        }

        .hero-meta {
            font-size: 11px;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Live Date Time */
        .live-datetime {
            background: white;
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid #E5E5E5;
        }

        .live-datetime .date-label {
            font-size: 11px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .live-datetime .datetime-value {
            font-size: 16px;
            color: #333;
            font-weight: 600;
        }

        .live-datetime .timezone {
            font-size: 11px;
            color: #666;
            margin-top: 5px;
        }

        /* Main Content */
        .content-wrapper {
            max-width: 100%;
            margin: 0 auto;
            padding: 40px 20px;
            display: block;
        }

        .main-content {
            margin-bottom: 40px;
        }

        .main-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 14px;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 30px;
        }

        .stat-card {
            background: #F8F8F8;
            padding: 20px 15px;
            border-radius: 8px;
        }

        .stat-value {
            font-size: 28px;
            font-weight: 700;
            color: #EF4444;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 11px;
            color: #666;
            font-weight: 500;
        }

        /* Sidebar */
        .sidebar {
            position: relative;
            top: auto;
            height: auto;
        }

        .sidebar-section {
            margin-bottom: 25px;
        }

        .sidebar-title {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #999;
            margin-bottom: 12px;
        }

        .tag {
            display: inline-block;
            background: #F0F0F0;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            margin-right: 8px;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }

        .cta-card {
            background: #EF4444;
            padding: 25px 20px;
            border-radius: 12px;
            color: white;
            margin-top: 25px;
        }

        .cta-card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .cta-card p {
            font-size: 12px;
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .cta-card button {
            width: 100%;
            background: white;
            color: #EF4444;
            border: none;
            padding: 12px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
        }

        /* Project Visuals */
        .visuals-section {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 20px 40px;
        }

        .visuals-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .visuals-section h2 {
            font-size: 24px;
            font-weight: 700;
        }

        .visuals-controls {
            display: flex;
            gap: 8px;
        }

        .visuals-btn {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: #F0F0F0;
            border: none;
            color: #333;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .visuals-btn:hover {
            background: #E0E0E0;
        }

        .visuals-carousel-wrapper {
            position: relative;
            overflow: hidden;
        }

        .visuals-grid {
            display: flex;
            gap: 15px;
            transition: transform 0.5s ease;
        }

        .visual-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            min-width: 100%;
            height: 200px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .visual-card img,
        .visual-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .visual-card:hover img,
        .visual-card:hover video {
            transform: scale(1.05);
        }

        .visual-tag {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: #EF4444;
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: rgba(239, 68, 68, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            pointer-events: none;
        }

        .play-icon::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 15px solid white;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            margin-left: 3px;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 100%;
            max-height: 100%;
            position: relative;
        }

        .lightbox-content img,
        .lightbox-content video {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
        }

        .lightbox-close {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid white;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10001;
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid white;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10001;
        }

        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .lightbox-prev {
            left: 10px;
        }

        .lightbox-next {
            right: 10px;
        }

        .lightbox-counter {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 12px;
            background: rgba(0, 0, 0, 0.5);
            padding: 6px 12px;
            border-radius: 20px;
            z-index: 10001;
        }

        /* FAQ Section */
        .faq-section {
            max-width: 100%;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .faq-section h2 {
            font-size: 24px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
        }

        .faq-item {
            border-bottom: 1px solid #E5E5E5;
            padding: 20px 0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
        }

        .faq-toggle {
            font-size: 18px;
            font-weight: 300;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 10px;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, margin-top 0.3s ease;
            color: #666;
            font-size: 13px;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            margin-top: 12px;
        }

        /* Comments Section */
        .comments-section {
            max-width: 100%;
            margin: 0 auto;
            padding: 40px 20px;
            background: #F9F9F9;
        }

        .comments-section h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .comment-form {
            background: white;
            padding: 25px 20px;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .form-group label .required {
            color: #EF4444;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #E5E5E5;
            border-radius: 8px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #EF4444;
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-comment-btn {
            background: #EF4444;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .submit-comment-btn:hover {
            background: #DC2626;
        }

        .submit-comment-btn:disabled {
            background: #CCC;
            cursor: not-allowed;
        }

        .form-message {
            margin-top: 15px;
            padding: 12px;
            border-radius: 8px;
            font-size: 13px;
            display: none;
        }

        .form-message.success {
            background: #D1FAE5;
            color: #065F46;
            border: 1px solid #A7F3D0;
        }

        .form-message.error {
            background: #FEE2E2;
            color: #991B1B;
            border: 1px solid #FECACA;
        }

        .comments-list {
            margin-top: 40px;
        }

        .comments-list h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #333;
        }

        .comment-item {
            background: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .comment-author {
            font-weight: 700;
            font-size: 14px;
            color: #333;
        }

        .comment-date {
            font-size: 12px;
            color: #999;
        }

        .comment-text {
            color: #666;
            font-size: 14px;
            line-height: 1.7;
        }

        .no-comments {
            text-align: center;
            padding: 40px;
            color: #999;
            font-size: 14px;
        }

        .loading-comments {
            text-align: center;
            padding: 40px;
            color: #999;
            font-size: 14px;
        }

        /* CTA Banner */
        .cta-banner {
            background: #EF4444;
            padding: 50px 20px;
            text-align: center;
            color: white;
        }

        .cta-banner h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .cta-banner p {
            font-size: 14px;
            margin-bottom: 25px;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 300px;
            margin: 0 auto;
        }

        .cta-buttons button {
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            border: 2px solid white;
            width: 100%;
        }

        .btn-primary {
            background: white;
            color: #EF4444;
        }

        .btn-secondary {
            background: transparent;
            color: white;
        }

        /* Projects Carousel */
        .projects-section {
            background: #1A1A1A;
            padding: 40px 20px 50px;
            color: white;
        }

        .projects-header {
            max-width: 100%;
            margin: 0 auto 25px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .projects-title {
            flex: 1;
        }

        .projects-header h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .projects-header p {
            color: #999;
            font-size: 13px;
        }

        .carousel-controls {
            display: flex;
            gap: 8px;
            justify-content: center;
        }

        .carousel-btn {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .carousel-btn:hover {
            background: rgba(255,255,255,0.2);
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
        }

        .projects-carousel {
            display: flex;
            gap: 15px;
            transition: transform 0.5s ease;
        }

        .project-card {
            min-width: 280px;
            height: 280px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }

        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .project-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        }

        .project-info h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .project-info p {
            font-size: 11px;
            color: #EF4444;
            font-weight: 600;
        }

        /* Footer */
        footer {
            background: white;
            padding: 40px 20px 30px;
            border-top: 1px solid #E5E5E5;
        }

        .footer-content {
            max-width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-logo {
            margin-bottom: 15px;
        }

        .footer-logo img {
            height: 35px;
            width: auto;
        }

        .footer-about p {
            color: #666;
            font-size: 12px;
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .footer-column h4 {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
            color: #333;
        }

        .footer-column a {
            display: block;
            color: #666;
            text-decoration: none;
            font-size: 13px;
            margin-bottom: 10px;
        }

        .footer-bottom {
            max-width: 100%;
            margin: 0 auto;
            padding-top: 20px;
            border-top: 1px solid #E5E5E5;
            display: flex;
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }

        .footer-bottom p {
            color: #999;
            font-size: 11px;
        }

        .footer-links {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            font-size: 11px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #F5F5F5;
            transition: all 0.3s ease;
        }

        .social-icon img {
            width: 20px;
            height: 20px;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .social-icon:hover img {
            filter: grayscale(0%);
        }

        .social-icon.facebook:hover {
            background: #E7F3FF;
        }

        .social-icon.instagram:hover {
            background: #FFE8F0;
        }

        .social-icon.linkedin:hover {
            background: #E7F3FF;
        }

        .social-icon.youtube:hover {
            background: #FFE8E8;
        }

        /* Tablet styles (768px and up) */
        @media (min-width: 768px) {
            header {
                padding: 20px 40px;
            }

            .logo img {
                height: 45px;
            }

            nav a {
                font-size: 13px;
            }

            .contact-btn {
                padding: 10px 20px;
            }

            .hero {
                height: 450px;
                margin-top: 68px;
            }

            .hero h1 {
                font-size: 38px;
            }

            .hero-subtitle {
                font-size: 10px;
            }

            .content-wrapper {
                padding: 60px 40px;
                display: grid;
                grid-template-columns: 1fr 350px;
                gap: 50px;
            }

            .main-content p {
                font-size: 15px;
            }

            .stats-grid {
                gap: 20px;
            }

            .stat-value {
                font-size: 32px;
            }

            .stat-label {
                font-size: 12px;
            }

            .sidebar {
                position: sticky;
                top: 100px;
                height: fit-content;
            }

            .visuals-section {
                padding: 0 40px 60px;
            }

            .visuals-section h2 {
                font-size: 28px;
            }

            .visuals-grid {
                gap: 20px;
            }

            .visual-card {
                min-width: calc(50% - 10px);
                height: 220px;
            }

            .faq-section {
                padding: 60px 40px;
            }

            .faq-section h2 {
                font-size: 28px;
            }

            .faq-question {
                font-size: 15px;
            }

            .cta-banner {
                padding: 60px 40px;
            }

            .cta-banner h2 {
                font-size: 36px;
            }

            .cta-banner p {
                font-size: 15px;
            }

            .cta-buttons {
                flex-direction: row;
                max-width: none;
                justify-content: center;
            }

            .cta-buttons button {
                width: auto;
                padding: 14px 28px;
            }

            .projects-section {
                padding: 50px 40px 60px;
            }

            .projects-header {
                flex-direction: row;
                align-items: center;
            }

            .projects-header h2 {
                font-size: 26px;
            }

            .carousel-controls {
                justify-content: flex-end;
            }

            .project-card {
                min-width: 320px;
                height: 320px;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        /* Desktop styles (1024px and up) */
        @media (min-width: 1024px) {
            header {
                padding: 20px 60px;
            }

            .logo img {
                height: 50px;
            }

            nav a {
                font-size: 14px;
            }

            .contact-btn {
                padding: 10px 24px;
            }

            .hero {
                height: 500px;
                background-attachment: fixed;
            }

            .hero h1 {
                font-size: 52px;
            }

            .hero-subtitle {
                font-size: 11px;
            }

            .content-wrapper {
                max-width: 1200px;
                padding: 80px 60px;
                gap: 80px;
                grid-template-columns: 1fr 380px;
            }

            .visuals-section {
                max-width: 1200px;
                padding: 0 60px 80px;
            }

            .visuals-section h2 {
                font-size: 32px;
            }

            .visuals-card {
                min-width: calc(33.333% - 17px);
            }

            .faq-section {
                max-width: 1200px;
                padding: 80px 60px;
            }

            .faq-section h2 {
                font-size: 32px;
            }

            .cta-banner {
                padding: 80px 60px;
            }

            .cta-banner h2 {
                font-size: 42px;
            }

            .cta-banner p {
                font-size: 16px;
            }

            .projects-section {
                padding: 60px 60px 80px;
            }

            .projects-header {
                max-width: 1200px;
            }

            .projects-header h2 {
                font-size: 28px;
            }

            .projects-header p {
                font-size: 14px;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
            }

            .project-card {
                min-width: 350px;
                height: 350px;
            }

            .project-info {
                padding: 25px;
            }

            .project-info h3 {
                font-size: 18px;
            }

            .project-info p {
                font-size: 12px;
            }

            .footer-content {
                max-width: 1200px;
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: 60px;
            }

            .footer-logo img {
                height: 40px;
            }

            .footer-about p {
                font-size: 13px;
            }

            .footer-column h4 {
                font-size: 12px;
            }

            .footer-column a {
                font-size: 14px;
            }

            .footer-bottom {
                max-width: 1200px;
            }

            .footer-bottom p {
                font-size: 12px;
            }

            .footer-links a {
                font-size: 12px;
            }

            .comments-section {
                max-width: 1200px;
                padding: 80px 60px;
            }

            .comments-section h2 {
                font-size: 32px;
            }

            .comment-form {
                padding: 35px;
            }

            .live-datetime .datetime-value {
                font-size: 20px;
            }
        }
    .lightbox-content iframe,
.lightbox-content video {
  width: 90vw;
  height: 70vh;
  border-radius: 12px;
}


/* ===== Call Back Popup – FINAL FIX ===== */

.callback-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.callback-popup.active {
    display: block;
}

.callback-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.callback-modal {
    position: relative;
    max-width: 420px;
    background: #fff;
    margin: 10vh auto;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
}

/* Header */
.callback-header {
    background: #EF4444;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.callback-title {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.callback-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* Body */
.callback-modal form {
    padding: 22px;
}

.callback-subtitle {
    font-size: 13px;
    color: #666;
    text-align: center;
    padding: 14px 22px 0;
}

.callback-modal input,
.callback-modal button {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    font-size: 14px;
}

.callback-modal button {
    background: #EF4444;
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.callback-modal button:hover {
    background: #DC2626;
}

.callback-message {
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
}
.footer-social-icons {
    list-style: none;
    display: flex;
    gap: 14px;
    padding: 0;
    margin-top: 14px;
}

.footer-social-icons li {
    display: inline-block;
}

.icon-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1a1a1a;
    text-decoration: none;
    filter: grayscale(100%);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.icon-social i {
    font-size: 18px;
    color: #b5b5b5;
    transition: color 0.35s ease;
}

/* Hover animation */
.icon-social:hover {
    filter: grayscale(0%);
    animation: bounce 0.6s;
}

/* Brand colors on hover */
.icon-social:hover .icon-facebook { color: #1877f2; }
.icon-social:hover .icon-instagram { color: #e4405f; }
.icon-social:hover .fa-linkedin-in { color: #0a66c2; }
.icon-social:hover .fa-youtube { color: #ff0000; }

@keyframes bounce {
    0%   { transform: translateY(0); }
    30%  { transform: translateY(-6px); }
    50%  { transform: translateY(0); }
    70%  { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}




/* =========================================
   CALLBACK POPUP – FINAL HARD FIX
   ========================================= */

/* Popup container */
.callback-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

/* Modal */
.callback-modal {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 26px 22px 28px;
    max-width: 420px;
    width: 92%;
    margin: auto;
    box-sizing: border-box;
}

/* 🔥 HARD RESET close button */
.callback-close {
    all: unset;               /* <-- THIS is the key */
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f04444;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
}

/* Prevent hover inheritance */
.callback-close:hover {
    background: #d73737;
}

/* FORM layout */
.callback-modal form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 14px;
}

/* Inputs */
.callback-modal input {
    width: 100%;
    height: 44px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    box-sizing: border-box;
}

/* Labels */
.callback-modal label {
    font-size: 13px;
    color: #555;
    margin-top: 4px;
}

/* Date & time – no overlap */
.callback-modal input[type="date"],
.callback-modal input[type="time"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
}

/* Submit button (allowed to stay full-width) */
.callback-modal button[type="submit"] {
    margin-top: 10px;
    height: 46px;
    border-radius: 10px;
    background: #f04444;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* Mobile safety */
@media (max-width: 480px) {
    .callback-modal {
        padding: 22px 18px 24px;
    }
}
