        body,
        html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: 'Manrope', sans-serif;
        }

        .hero-section {
            box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.85);
            min-height: 100vh;
            color: white;
            display: flex;
            align-items: center;
        }

        /* Overlay */
        .hero-overlay {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 60px;
            width: 100%;
        }

        /* Mobile Fix */
        @media (max-width: 768px) {

            .hero-section {
                min-height: 70vh;
                text-align: center;
            }

            .hero-overlay {
                padding: 30px 20px;
                margin-top: 0;
            }

            .hero-overlay h1 {
                font-size: 24px;
                line-height: 1.4;
            }
        }

        .hero-buttons .btn {
            margin-right: 15px;
        }

        /* Navbar wrapper */
        .custom-navbar {
            height: 80px;
            padding: 0;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
        }

        /* Container alignment */
        .custom-navbar .container {
            height: 100%;
        }

        /* Brand */
        .custom-navbar .navbar-brand {
            display: flex;
            align-items: center;
        }

        /* LOGO CONTROL */
        .navbar-logo {
            height: 120px;
            width: auto;
            transition: 0.3s ease;
        }

        /* Nav links */
        .custom-navbar .nav-link {
            padding: 0 18px;
            font-weight: 600;
            color: #02132d !important;
        }

        /* Mobile toggle fix */
        .navbar-toggler {
            padding: 6px 10px;
        }

        /* Mobile */
        @media (max-width: 991px) {
            .custom-navbar {
                height: auto;
            }

            .navbar-logo {
                height: 100px;
            }
        }

        /* Mobile menu spacing */
        @media (max-width: 991px) {

            /* collapse container */
            .custom-navbar .navbar-collapse {
                background: #fff;
                /* optional, clean look */
                padding: 15px 0;
            }

            /* UL spacing */
            .custom-navbar .navbar-nav {
                gap: 6px;
                /* links ke beech space */
            }

            /* Nav links vertical padding */
            .custom-navbar .nav-link {
                padding: 10px 20px;
                display: block;
            }
        }

        /* Navbar links */
        .navbar-nav .nav-link {
            color: #3b261a !important;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color:#b08a4f !important;
            /* yellow hover */
            text-decoration: underline;
        }

        /* unit section */
        .unit-section {
            background: url('https://atomcapitol.com/wp-content/uploads/2025/07/a.webp') no-repeat center center/cover;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 15px;
        }

        .unit-box {
            background-color: rgba(238, 240, 237, 0.8);
            color: #121010;
            padding: 120px 30px;
            text-align: center;
            max-width: 700px;
            width: 100%;
            border-radius: 10px;
            height: 50vh;
        }

        .unit-box h2 {
            font-weight: 700;
        }

        .unit-box ul {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            text-align: left;
        }

        .btn-custom {
            background: #1c3610;
            color: #fff;
            padding: 10px 20px;
            font-weight: 500;
            border: none;
            width: 100%;
            transition: 0.3s;
        }

        .btn-custom:hover {
            background: #355e26;
        }

        /* circle positioon abslute */
        .circle {
            position: absolute;
            top: -30px;
            left: -30px;
            width: 100px;
            height: 100px;
            border-radius: 100%;
            border: 10px solid #046aae;
            box-shadow: 0 4px 10px rgba(238, 12, 12, 0.2);
        }

        /* contact section */
        .contact-info h4,
        .contact-form h4 {
            font-weight: 700;
            margin-bottom: 20px;
        }

        .contact-info p {
            margin-bottom: 10px;
        }

        .contact-info strong {
            display: inline-block;
            width: 120px;
        }

        .form-control {
            margin-bottom: 15px;
        }

        .contact-btn:hover {
            background-color: black;
            color: #ebebeb;
        }

        /* Footer section */
        footer {
            background: linear-gradient(135deg, #0a0a0a, #1e1818, #260f02);
            color: #fff;
            padding-top: 40px;
        }

        footer h5 {
            font-weight: 700;
            margin-bottom: 15px;
        }

        footer a {
            color: #ccc;
            text-decoration: none;
        }

        footer a:hover {
            color: #eeab25;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 30px;
            padding: 15px 0;
            text-align: center;
            font-size: 14px;
            color: #bbb;
        }

        .newsletter-input input {
            border-radius: 0;
        }

        .newsletter-btn {
            border-radius: 0;
            width: 100%;
        }

        .social-icons a {
            color: #fff;
            margin-right: 10px;
            font-size: 20px;
            display: inline-block;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: #eeab25;
        }

        .contact-box {
            background: #fff;
            padding: 30px 25px;
            border-radius: 10px;
        }

        .contact-row {
            display: flex;
            justify-content: space-between;
            gap: 15px;
            text-align: left;
        }

        .contact-row .label {
            font-weight: 600;
            min-width: 120px;
        }

        .contact-row .value {
            color: #555;
        }

        /* Mobile */
        @media (max-width: 575px) {
            .contact-row {
                flex-direction: column;
                gap: 5px;
                text-align: center;
            }

            .contact-row .label {
                min-width: auto;
            }
        }

        .subscribe-form .btn,
        .subscribe-form .form-control {
            height: 45px;
        }

        /* loyer types section */
        body {
            font-family: Arial, sans-serif;
        }

        /* 5 Column Layout */
        .col-5-custom {
            flex: 0 0 20%;
            max-width: 20%;
        }

        @media (max-width: 1200px) {
            .col-5-custom {
                flex: 0 0 33.333%;
                max-width: 33.333%;
            }
        }

        @media (max-width: 768px) {
            .col-5-custom {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }

        @media (max-width: 576px) {
            .col-5-custom {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        /* Card */
        .practice-card {
            position: relative;
            height: 400px;
            background: #fff;
            overflow: hidden;
            border-right: 1px solid #eee;
            transition: all 0.4s ease;
        }

        .practice-inner {
            position: relative;
            z-index: 2;
            height: 100%;
            padding: 35px 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }

        /* Background Image */
        .practice-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: 0.4s ease;
            z-index: 1;
        }

        /* Dark Overlay */
        .practice-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                    rgba(42, 8, 8, 0.75),
                    rgba(33, 10, 4, 0.95));
        }

        /* Hover Effects */
        .practice-card:hover .practice-bg {
            opacity: 1;
        }

        .practice-card:hover {
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
        }

        /* Icon */
        .practice-icon {
            font-size: 46px;
            color: #b08b57;
            margin-bottom: 20px;
            transition: 0.3s;
        }

        /* Text */
        .practice-card h4 {
            font-weight: 700;
            margin-bottom: 12px;
            color: #e4eaf2;
            transition: 0.3s;
        }

        .practice-card p {
            font-size: 14.5px;
            color: #666;
            transition: 0.3s;
        }

        /* Hover Text Color */
        .practice-card:hover h5,
        .practice-card:hover p,
        .practice-card:hover .practice-icon {
            color: #ffffff;
        }

        /* about sectin */
        .about-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: 5px solid #200a0a;
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
            border-radius: 6px;
        }

        /* Right image alignment */
        .about-img-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        /* Mobile spacing */
        @media (max-width: 991px) {
            .about-img {
                max-height: 350px;
                margin-top: 20px;
            }
        }

        /* team */
        .team-section {
            background: #e3f1ff;
        }

        .team-line {
            width: 50px;
            height: 2px;
            background: #b08b57;
        }

        .team-title {
            font-size: 28px;
            font-weight: 700;
            text-transform: uppercase;
            color: #1f2a44;
            max-width: 900px;
        }

        .team-card {
            background: #fff;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-radius: 6px;
            overflow: hidden;
            height: 100%;
        }

        .team-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .team-info {
            padding: 20px;
        }

        .team-info h5 {
            margin-bottom: 5px;
            font-weight: 700;
            color: #1f2a44;
        }

        .team-info p {
            margin: 0;
            color: #777;
            font-size: 14px;
        }

        /* Main Box */
        .info-box {
            height: 320px;
            /* 👈 thoda chhota */
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        /* Image */
        .info-img {
            width: 100px;
            /* 👈 image thodi chhoti */
            margin-bottom: 12px;
        }

        /* Content wrapper */
        .info-content {
            overflow-y: auto;
            /* 👈 extra text scroll ho jayega */
        }

        /* Heading */
        .info-content h5 {
            font-size: 16px;
            margin-bottom: 8px;
            color: #02132d;
        }

        /* Text */
        .info-content p {
            font-size: 13px;
            line-height: 1.5;
            color: #211010;
        }

        /* Scrollbar hide (optional – looks premium) */
        .info-content::-webkit-scrollbar {
            width: 4px;
        }

        .info-content::-webkit-scrollbar-thumb {
            background: #999;
            border-radius: 10px;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .info-box {
                height: auto;
                /* mobile pe full content */
            }

            .info-content {
                overflow: visible;
            }
        }

        .help-section {
            background: #000000;
            position: relative;
            padding: 200px 0 120px;
            overflow: visible;
            margin-top: 200px
                /* VERY IMPORTANT */
        }

        /* Row */
        .help-row {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -30%);
            /* pehle -50% tha */
            width: 100%;
            max-width: 1290px;
            z-index: 5;
            padding: 0 15px;
        }

        /* Card */
        .help-card {
            position: relative;
            height: 420px;
            border-radius: 6px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
            background-color: #000;
        }

        /* Hover */
        .help-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
        }

        /* Overlay */
        .help-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 25, 40, 0.75);
        }

        .help-overlay.light {
            background: rgba(255, 255, 255, 0.75);
        }

        /* Content */
        .help-content {
            position: relative;
            z-index: 2;
            max-width: 75%;
            margin: auto;
        }

        /* Button */
        .help-btn {
            background: #c59d5f;
            color: #fff;
            padding: 12px 28px;
            font-weight: 600;
        }

        .help-btn:hover {
            background: #b08a4f;
        }

        /* Background Images */
        .bg-1,
        .bg-2 {
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        /* Background Images */
        @media (max-width: 991px) {
            .help-row {
                position: relative;
                top: 0;
                transform: none;
                max-width: 100%;
            }

            .help-section {
                padding: 80px 0;
            }

            .help-card {
                height: auto;
                padding: 60px 30px;
            }
        }

        @media (max-width: 992px) {
            .help-row {
                position: relative;
                /* absolute band */
                left: 0;
                top: 0;
                transform: none;
                /* overlap hat gaya */
                max-width: 100%;
            }

            .help-section {
                padding: 80px 0;
                /* normal spacing */
            }

            .help-card {
                height: auto;
                padding: 60px 30px;
            }
        }

        /* icons position fixed */
        .floating-icons {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 999;
        }

        .icon-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 25px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            text-decoration: none;
            transition: transform 0.2s ease-in-out;
            flex-direction: row;
        }

        .icon-btn:hover {
            transform: scale(1.1);
        }
        
        /* MODAL */
        .contact-modal {
            background: rgba(0, 0, 0, 0.8) !important;
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 0 !important;
        }

        /* HEADER – REMOVE ALL GAP */
        .custom-header {
            padding: 0 !important;
            margin: 0 !important;
            border: none !important;
            text-align: center;
            position: relative;
        }

        /* LOGO */
        .modal-logo {
            height: 220px;
            display: block;
            margin: 0 auto !important;
        }

        /* TITLE – CHIPKA HUA */
        .contact-title {
            margin: 0 !important;
            padding: 0 !important;
            color: #ddd;
            font-size: 18px;
        }

        /* BODY – NO TOP SPACE */
        .custom-body {
            padding-top: 5px !important;
            margin-top: 0 !important;
        }

        /* FORM LABEL */
        .form-label {
            color: #ccc;
        }

        /* INPUT */
        .form-control {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
        }

        .form-control::placeholder {
            color: #aaa;
        }

        /* CLOSE */
        .custom-close {
            position: absolute;
            top: 10px;
            right: 10px;
            filter: invert(1);
        }
