* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

 /* Navigation Bar Styles */
 .navbar-custom {
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(15px);
     padding: 15px 0;
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     border-bottom: 1px solid rgba(212, 175, 55, 0.1);
     box-shadow: 0 2px 20px rgba(26, 26, 26, 0.05);
     transition: all 0.3s ease;
 }

 .navbar-custom.scrolled {
     background: rgba(255, 255, 255, 0.99);
     padding: 10px 0;
     backdrop-filter: blur(20px);
     box-shadow: 0 2px 30px rgba(26, 26, 26, 0.1);
 }

 .navbar-brand {
     font-size: 20px;
     font-weight: 700;
     color: #1a1a1a !important;
     text-decoration: none;
     display: flex;
     align-items: center;
     transition: all 0.3s ease;
 }

 .navbar-brand:hover {
     transform: scale(1.05);
     color: #d4af37 !important;
 }

 .logo-icon {
     width: 145px;
     height: 65px;
     /* background: linear-gradient(135deg, #d4af37, #b8860b); */
     border-radius: 12px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     /* margin-right: 12px; */
     animation: logoFloat 4s ease-in-out infinite;
     /* box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2); */
     position: relative;
     overflow: hidden;
 }

 .logo-icon::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
     animation: logoShine 4s ease-in-out infinite;
 }

 @keyframes logoShine {

     0%,
     100% {
         transform: rotate(0deg);
     }

     50% {
         transform: rotate(180deg);
     }
 }

 .logo-icon i {
     color: white;
     position: relative;
     z-index: 2;
 }

 @keyframes logoFloat {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
     }

     25% {
         transform: translateY(-3px) rotate(1deg);
     }

     75% {
         transform: translateY(3px) rotate(-1deg);
     }
 }

 .logo-text {
     display: flex;
     flex-direction: column;
     line-height: 1;
 }

 .logo-main {
     font-size: 18px;
     font-weight: 800;
     letter-spacing: 1px;
 }

 .logo-sub {
     font-size: 10px;
     font-weight: 400;
     opacity: 0.8;
     letter-spacing: 2px;
     color: #d4af37;
 }

 .nav-pills-container {
     background: #fafafa;
     border: 1px solid rgba(212, 175, 55, 0.2);
     border-radius: 50px;
     padding: 8px 12px;
     transition: all 0.3s ease;
 }

 .navbar-nav {
     display: flex;
     align-items: center;
     margin: 0;
 }

 .nav-item {
     position: relative;
 }

 .nav-link {
     color: #2c2c2c !important;
     font-weight: 600;
     font-size: 13px;
     padding: 12px 20px !important;
     margin: 0 2px;
     border-radius: 50px;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .nav-link:hover,
 .nav-link.active {
     background: #d4af37;
     /* color: #000 !import.nav-link    ant; */
 }

 .nav-link:hover {
     color: white !important;
     background: linear-gradient(135deg, #d4af37, #b8860b);
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
 }

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #fafafa;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4a4a;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    color: white;
    text-decoration: none;
}

.social-icon.linkedin:hover {
    background: linear-gradient(135deg, #0077b5, #005885);
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.4);
    border-color: #0077b5;
}

.social-icon.email:hover {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
}

.phone-info {
    background: #fafafa;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    padding: 12px 18px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.phone-info:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.phone-icon {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: white;
    animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(-5deg);
    }
}

.btn-request {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-request::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-request:hover::before {
    left: 100%;
}

.btn-request:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    color: white;
    text-decoration: none;
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 8px;
    background: #fafafa;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    background: #d4af37;
}

.navbar-toggler:hover .navbar-toggler-icon {
    color: white;
}

.navbar-toggler-icon {
    background-image: none;
    width: 20px;
    height: 20px;
}

.navbar-toggler-icon::before {
    content: '\f0c9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #4a4a4a;
    font-size: 18px;
    transition: color 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon::before {
    color: white;
}

/* Page Header */
.page-header {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/Stone_Texture.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 90px;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
}

/* About Content Sections */
.about-content {
    padding: 80px 0;
}

.about-section-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.about-section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.section-badge {
    background: #d4af37;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: inline-block;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.section-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Founder Profile Section */
.founder-section {
    /* background: #f8f9fa; */
    padding: 80px 0;
    padding-bottom: 0px!important;
}

.founder-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.founder-image {
    width: 100%;
    height: 350px;
    background: url('img/mahesh.jpeg') center/cover;
    border-radius: 15px;
    border: 3px solid #d4af37;
}

.founder-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.founder-title {
    color: #d4af37;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 25px;
}

.founder-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.cta-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-primary {
    background: white;
    color: #d4af37;
}

.cta-btn-secondary {
    background: #25d366;
    color: white;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.cta-btn-primary:hover {
    color: #d4af37;
}

.cta-btn-secondary:hover {
    color: white;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 24px;
}

.footer-about p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #999;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-btn,
.scroll-top-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.scroll-top-btn {
    background: #d4af37;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #b8860b;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .nav-pills-container {
        background: transparent;
        border: none;
        padding: 0;
        margin-top: 20px;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .nav-link {
        margin: 2px 0;
        text-align: center;
        width: 100%;
    }

    .header-actions {
        margin-top: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .phone-info {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .founder-card {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-section-card {
        padding: 30px 25px;
    }

    .founder-card {
        padding: 30px 25px;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn,
    .scroll-top-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-section-card {
        padding: 25px 20px;
    }

    .founder-card {
        padding: 25px 20px;
    }
}