* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Calibri, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: #F7F7F8;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: #ffffff;
            padding: 0.6rem 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand img {
            height: 42px;
            width: auto;
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin-left: 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus-visible,
        .navbar-nav .nav-link.active,
        .navbar-nav .dropdown-toggle.active {
            color: #86BC25 !important;
        }
        
        .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

        
        .btn-get-started:hover {
    background: #86BC25;
}

        
        /* Hero Section */
       
         .hero{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  /* ✅ Better than 100vh */
  min-height: 100svh;   /* mobile safe viewport */
}

.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero-content{
  position: relative;
  z-index: 1;
  padding: 0 2rem;
  color: white;
  margin-top: 9rem;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.25);
  z-index: 0;
}

/* ✅ Mobile: remove padding & stop forcing smaller vh values */
@media (max-width: 576px){
  .hero{
    min-height: 60svh;     /* you can change 60 -> 70 if needed */
    padding: 0;            /* remove extra spacing */
  }
}


        /* @media (max-width: 992px) {
            .hero {
                min-height: 80vh;
                padding: 3rem 1.5rem;
            }
            .hero h1 {
                font-size: 3rem;
            }
            .hero-bg {
                object-position: center 40%;
            }
        }

        @media (max-width: 576px) {
            .hero {
                min-height: 75vh;
                padding: 3.5rem 1rem 3rem;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero-bg {
                object-position: center 35%;
            }
        } */

       
        /* Contact Section */
        .contact-section {
            padding: 5rem 2rem;
            background-color: #F7F7F8;
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .contact-card {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        
        .contact-card-icon {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            color: #000;
            background: #86BC25;
        }
        
        .contact-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 0.5rem;
        }
        
        .contact-card p {
            color: #555;
            font-size: 1rem;
        }
        
        .contact-link {
            color: #86BC25;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .contact-link:hover {
            color: #86BC25;
        }
        
        /* Contact Form */
        .contact-form {
            background-color: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        
        .contact-form h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: Calibri, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #86BC25;
            box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            
             background: #86BC25;
            color: black;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .submit-btn:hover {
            background-color: #1a1a1a;
            color: white;
        }
        body.dark-mode .submit-btn:hover {
            background-color: white;
            color: black;
        }
        
        /* Footer */
        footer {
            background-color: #111313;
            border-top: 1px solid #e5e7eb;
        }
        
        footer h6 {
            font-size: 0.95rem;
        }
        
        footer a {
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: #86BC25 !important;
        }
        
        
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        .btn-directions {
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 8px;
            border: 1px solid #86BC25;
            color: #86BC25;
            background: transparent;
            transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
        }

        .btn-directions:hover {
            background: #86BC25;
            color: #0f172a;
            border-color: transparent;
        }

        /* Handshake Icon */
        .handshake-icon {
            font-size: 6rem;
            margin-bottom: 1.5rem;
            display: inline-block;
           
        }

        .handshake-icon i {
            background: #86BC25;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

       

        body.dark-mode .handshake-icon i {
            background-color: #86BC25;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Map Section */
        .map-section {
            background: linear-gradient(135deg, #e8f1f9 0%, #f5f9fc 50%, #ffffff 100%);
            padding: 3rem 0;
        }

        .map-section .map-heading-highlight {
           
            color:#86BC25
        }

        .map-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 2rem;
            align-items: center;
            margin-bottom: 2rem;
        }

        .charminar-image-container {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .charminar-image-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.18);
        }

        .charminar-image {
            width: 100%;
            height: 380px;
            object-fit: cover;
            display: block;
        }

        .charminar-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
            padding: 1.5rem;
            color: white;
        }

        .charminar-overlay h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .charminar-overlay p {
            font-size: 0.9rem;
            margin: 0;
            opacity: 0.95;
        }

        .map-container {
            background-color: white;
            border-radius: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            overflow: hidden;
            height: 380px;
        }

        body.dark-mode .map-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
        }

        body.dark-mode .map-section .map-heading-highlight {
          color:#86BC25;
        }

        body.dark-mode .map-container {
            background-color: #2a2a2a;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        body.dark-mode .charminar-image-container {
            box-shadow: 0 8px 24px rgba(0,0,0,0.4);
        }

        body.dark-mode .map-section h3 {
            color: #fff !important;
        }

        body.dark-mode .map-section .text-muted {
            color: #aaa !important;
        }

        @media (max-width: 992px) {
            .map-grid {
                grid-template-columns: 1fr;
            }

            .charminar-image {
                height: 320px;
            }

            .map-container {
                height: 320px;
            }

            .map-section h3 {
                font-size: 1.75rem !important;
            }
        }

        @media (max-width: 576px) {
            .charminar-image {
                height: 280px;
            }

            .map-container {
                height: 280px;
            }

            .map-section h3 {
                font-size: 1.5rem !important;
            }

            .charminar-overlay h4 {
                font-size: 1.1rem;
            }

            .charminar-overlay p {
                font-size: 0.85rem;
            }
        }
        /* ============================= */
/*        NAVBAR STYLING         */
/* ============================= */

.navbar {
    background-color: #ffffff;
    padding: 0.6rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.navbar-brand img {
    height: 42px;
    width: auto;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #86BC25 !important;
}

/* "Let's Connect" Button */
.btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}


.btn-get-started:hover {
    background: #86BC25;
}


/* Dark Mode – Navbar */
body.dark-mode .navbar {
    background-color: #2a2a2a;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

body.dark-mode .navbar-nav .nav-link {
    color: #e0e0e0 !important;
}

body.dark-mode .navbar-nav .nav-link:hover,
body.dark-mode .navbar-nav .nav-link:focus-visible,
body.dark-mode .navbar-nav .nav-link.active,
body.dark-mode .navbar-nav .dropdown-toggle.active {
    color: #86BC25 !important;
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    stroke: #333;
    stroke-width: 2;
    fill: none;
    transition: all 0.3s ease;
}

body.dark-mode .theme-toggle svg {
    stroke: #fff;
}

/* Mobile Navbar */
@media (max-width: 768px) {
    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.7rem 0;
        /* text-align: center; */
    }
}

/* Dark Mode - Body & General */
body.dark-mode {
    background-color: #1a1a1a;
    color: #ccc;
}



body.dark-mode .hero h1 {
    color: #fff;
}

body.dark-mode .hero p {
    color: #fff;
}

/* Dark Mode - Contact Section */
body.dark-mode .contact-section {
    background-color: #1a1a1a;
}

body.dark-mode .contact-card {
    background-color: #2a2a2a;
    box-shadow: 0 2px 8px rgba(255,255,255,0.08);
}

body.dark-mode .contact-card:hover {
    box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

body.dark-mode .contact-card h3 {
    color: #fff;
}

body.dark-mode .contact-card p {
    color: #aaa;
}

/* Dark Mode - Contact Form */
body.dark-mode .contact-form {
    background-color: #2a2a2a;
    box-shadow: 0 2px 8px rgba(255,255,255,0.08);
}

body.dark-mode .contact-form h3 {
    color: #fff;
}

body.dark-mode .form-group label {
    color: #ccc;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background-color: #333;
    border-color: #444;
    color: #ccc;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus {
    background-color: #333;
    border-color: #86BC25;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

/* Dark Mode - Footer */
body.dark-mode footer {
    background-color: #111313;
    border-top-color: #444;
}

body.dark-mode footer h6 {
    color: #fff;
}

body.dark-mode footer a {
    color: #aaa;
}

body.dark-mode footer a:hover {
    color: #86BC25;
}

body.dark-mode .text-muted {
    color: #999 !important;
}

body.dark-mode .bg-light {
    background-color: #2a2a2a !important;
}

body.dark-mode footer {
    background-color: #111313;
    border-top: 1px solid #333;
}

body.dark-mode footer h6 {
    color: #ffffff !important;
}

body.dark-mode footer a {
    color: #b0b0b0 !important;
}

body.dark-mode footer a:hover {
    color: #d3d3d8 !important;
}

body.dark-mode footer .text-muted {
    color: #888 !important;
}

body.dark-mode footer .text-dark {
    color: #ffffff !important;
}

body.dark-mode footer hr {
    border-color: #333 !important;
}

body.dark-mode footer svg {
    stroke: #b0b0b0;
}

body.dark-mode footer a:hover svg {
    stroke: #4a9eff;
}

body.dark-mode .dropdown-menu {
    background-color: #2a2a2a;
    border-color: #444;
}

body.dark-mode .dropdown-item {
    color: #ccc;
}

body.dark-mode .dropdown-item:hover {
    background-color: #333;
    color: #4a9eff;
}

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

/* Floating WhatsApp circle */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px #0003;
    z-index: 999;
    animation: pulse 1.5s infinite;
}

/* Icon inside */
.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Social Icons */
.social-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.social-instagram {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.social-linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #0066cc 100%);
}

.social-youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-twitter {
    background-color: #1da1f2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .social-icons {
        right: 10px;
        gap: 10px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .handshake-icon {
        font-size: 4.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    footer .row {
        gap: 1.5rem !important;
    }

    footer h6 {
        font-size: 0.95rem;
    }

    footer small {
        font-size: 0.8rem;
    }

    .row.align-items-center {
        justify-content: center !important;
        align-items: center !important;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem !important;
    }

    footer .row {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        justify-content: flex-start !important;
    }

    footer .row > div {
        flex: none !important;
        width: 100% !important;
        min-width: auto !important;
    }

    footer img {
        max-width: 120px !important;
    }

    footer h6 {
        font-size: 0.95rem;
        margin-bottom: 1rem !important;
    }

    footer ul {
        padding-left: 0;
    }

    footer li {
        margin-bottom: 0.75rem !important;
    }

    footer small {
        font-size: 0.8rem;
    }

    footer svg {
        width: 16px !important;
        height: 16px !important;
    }

    .row.align-items-center {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .row.align-items-center .col-md-4 {
        width: 100% !important;
        text-align: center !important;
    }

    footer hr {
        margin: 1rem 0 !important;
    }
}

@media (max-width: 640px) {
    footer {
        padding: 1.5rem 1rem !important;
    }

    footer img {
        max-width: 100px !important;
        margin-bottom: 0.75rem !important;
    }

    footer h6 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem !important;
    }

    footer .mb-4 {
        margin-bottom: 0.75rem !important;
    }

    footer li {
        margin-bottom: 0.5rem !important;
    }

    footer small {
        font-size: 0.75rem;
    }

    footer .text-muted.small {
        margin-bottom: 0.5rem !important;
    }

    footer p {
        margin-bottom: 0.5rem !important;
    }

    footer svg {
        width: 14px !important;
        height: 14px !important;
        margin-right: 0.4rem !important;
    }

    .row.align-items-center {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .row.align-items-center .col-md-4 {
        width: 100% !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .row.align-items-center .col-md-4:nth-child(2) {
        text-align: center !important;
    }

    .row.align-items-center .col-md-4:nth-child(3) {
        text-align: center !important;
    }

    .row.align-items-center .col-md-4 p {
        font-size: 0.75rem;
        margin-bottom: 0.35rem !important;
    }

    .row.align-items-center .col-md-4 a {
        font-size: 0.75rem;
    }

    .row.align-items-center .col-md-4 span {
        font-size: 0.75rem;
        color: #555 !important;
        margin: 0 0.35rem !important;
    }

    .row.align-items-center .col-md-4 svg {
        width: 13px !important;
        height: 13px !important;
        margin-right: 0.3rem !important;
    }

    footer hr {
        margin: 0.75rem 0 !important;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 1rem !important;
    }

    footer .mb-5 {
        margin-bottom: 1rem !important;
    }

    footer .row {
        gap: 1rem !important;
    }

    footer img {
        max-width: 90px !important;
        margin-bottom: 0.5rem !important;
    }

    footer h6 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem !important;
    }

    footer ul.list-unstyled {
        margin-bottom: 0;
    }

    footer li {
        margin-bottom: 0.35rem !important;
    }

    footer small {
        font-size: 0.7rem;
    }

    footer p.small {
        font-size: 0.7rem;
    }

    footer .text-muted.small {
        margin-bottom: 0.3rem !important;
    }

    footer a.text-decoration-none.small {
        display: inline-flex;
        align-items: center;
    }

    footer svg {
        width: 12px !important;
        height: 12px !important;
        margin-right: 0.3rem !important;
    }

    footer .text-end,
    footer .text-center {
        text-align: left !important;
    }

    .row.align-items-center {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.75rem !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .row.align-items-center .col-md-4 {
        width: 100% !important;
        text-align: center !important;
        flex: none !important;
        padding: 0 !important;
    }

    .row.align-items-center .col-md-4:nth-child(2) {
        text-align: center !important;
    }

    .row.align-items-center .col-md-4:nth-child(3) {
        text-align: center !important;
    }

    .row.align-items-center .col-md-4 p {
        font-size: 0.7rem;
        margin-bottom: 0.5rem !important;
        word-break: break-word;
    }

    .row.align-items-center .col-md-4 a {
        font-size: 0.7rem;
        display: inline;
    }

    .row.align-items-center .col-md-4 span {
        font-size: 0.7rem;
        color: #555 !important;
        margin: 0 0.3rem !important;
    }

    .row.align-items-center .col-md-4 svg {
        width: 11px !important;
        height: 11px !important;
        margin-right: 0.2rem !important;
    }

    footer hr {
        margin: 0.5rem 0 !important;
    }

    footer .py-5 {
        padding: 1rem 0 !important;
    }

    footer .mt-5 {
        margin-top: 1rem !important;
    }
}
