/* ===================================
   MAIN STYLES - Ar. Sudhir P. Kulkarni
   =================================== */

:root {
    /* Colors */
    --primary-green: #8bf147;
    --primary-red: #76f4a9;
    --dark-bg: #5ea56c;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s ease;
    --transition-slow: 0.8s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* ===================================
   PAGE LOADER
   =================================== */

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-red));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
}

.logo-animation {
    width: 150px;
    height: 150px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo-animation h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    padding: 1.5rem 0;
    transition: all var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    transition: var(--transition-fast);
}

.navbar.scrolled .navbar-brand {
    color: var(--text-dark) !important;
}

.brand-text {
    background: linear-gradient(135deg, #9ab2d2,  #0f3293);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white) !important;
    margin: 0 1rem;
    transition: var(--transition-fast);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* ===================================
   SECTIONS
   =================================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}



.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Intro Section */
.intro-section {
    background: var(--light-bg);
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-dark);
}

/* ===================================
   SERVICE CARDS
   =================================== */

.service-card-modern {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(109, 149, 240, 0.08);
    transition: 0.3s ease;
}

.service-card-modern:hover {
    transform: translateY(-5px);
}

.service-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 25px;
    text-align: left;
}

.service-icon-modern {
    font-size: 34px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.icon-building::before { content: "\ee4f"; font-family: "remixicon"; } /* building-4-line */
.icon-interior::before { content: "\f19f"; font-family: "remixicon"; } /* seat-line */
.icon-engineering::before { content: "\ef44"; font-family: "remixicon"; } /* settings-3-line */
.icon-valuer::before { content: "\ed22"; font-family: "remixicon"; } /* file-list-3-line */
.icon-vastu::before { content: "\f1cd"; font-family: "remixicon"; } /* compass-3-line */
.icon-management::before { content: "\eeff"; font-family: "remixicon"; } /* bar-chart-grouped-line */
.icon-innovation::before { content: "\efcd"; font-family: "remixicon"; } /* lightbulb-flash-line */
.icon-quality::before { content: "\f1f1"; font-family: "remixicon"; } /* star-smile-line */
.icon-sustainability::before { content: "\f1d9"; font-family: "remixicon"; } /* plant-line */
.icon-integrity::before { content: "\ea09"; font-family: "remixicon"; } /* check-double-line */
.icon-trophy::before { content: "\f28f"; font-family: "remixicon"; } /* trophy-line */
.icon-location::before { content: "\ee4d"; font-family: "remixicon"; } /* map-pin-line */
.icon-phone::before { content: "\efdf"; font-family: "remixicon"; } /* phone-line */
.icon-email::before { content: "\ea8a"; font-family: "remixicon"; } /* mail-line */
.icon-clock::before { content: "\eddf"; font-family: "remixicon"; } /* time-line */


/* ===================================
   PROJECT CARDS
   =================================== */

.project-card {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow-hover);
}

.project-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.15);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-green);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.project-location {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.project-description {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===================================
   TESTIMONIAL SECTION
   =================================== */

.testimonial-section {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-red));
    color: var(--white);
}

.testimonial-content {
    text-align: center;
    padding: 3rem 2rem;
}

.quote-icon {
    font-size: 5rem;
    opacity: 0.3;
    line-height: 1;
}

.testimonial-quote {
    font-size: 2rem;
    font-style: italic;
    margin: 2rem 0;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer p {
    color: rgb(249, 249, 253);
    margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Brand colors on hover */
.social-link.facebook:hover {
  background: #1877f2;
}

.social-link.linkedin:hover {
  background: #0a66c2;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-link.youtube:hover {
  background: #ff0000;
}


.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--primary-green);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1.5rem;
}

/* ===================================
   SCROLL TO TOP
   =================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
}

/* ===================================
   PAGE HEADER (for inner pages)
   =================================== */

.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-red));
    color: var(--white);
}

/* ===================================
   ADDITIONAL STYLES FOR INNER PAGES
   =================================== */

/* Qualifications Box */
.qualifications-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.qualifications-list {
    list-style: none;
    padding: 0;
}

.qualifications-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.qualifications-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Value Cards */
.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all var(--transition-smooth);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow-hover);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
}

/* Award Card Featured */
.award-card-featured {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.award-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.award-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 1rem 0;
}

.award-org {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Service Card Detailed */
.service-card-detailed {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all var(--transition-smooth);
    height: 100%;
}


.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow-hover);
}

.service-icon-large {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card-detailed h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-red));
    color: var(--white);
}

/* Filter Buttons */
.filter-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    color: var(--white);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-green);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--primary-green);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    width: calc(50% - 40px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content h4 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-content h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-light);
}

/* Recognition Cards */
.recognition-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all var(--transition-smooth);
}

.recognition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow-hover);
}

.recognition-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.recognition-card h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.recognition-card p {
    color: var(--text-light);
}

/* Contact Form */
.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    transition: border-color var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(182, 204, 58, 0.25);
}

/* Contact Info Items */
.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
}

.contact-details h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-details a:hover {
    color: var(--primary-green);
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
     
    .nav-link {
        margin: 0.5rem 0;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-content {

        width: calc(100% - 80px);
        margin-left: 60px !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .project-card {
        margin-bottom: 2rem;
    }
}

/* ===== Short Learn More Button ===== */
a.animated-button.thar-four{
    position: relative;
    display: inline-flex;          /* ✅ prevents full width */
    align-items: center;
    justify-content: center;
    padding: 8px 16px;             /* ✅ smaller size */
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;

    border: 1.5px solid rgba(247,202,24,0.7);
    background: transparent;
    overflow: hidden;

    width: auto;                   /* ✅ key fix */
    max-width: fit-content;        /* ✅ key fix */

    transition: 
        color 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

/* Animated fill */
a.animated-button.thar-four::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #F7CA18;
    z-index: -1;
    transition: width 0.4s ease;
}

/* Hover animation */
a.animated-button.thar-four:hover::before{
    width: 100%;
}

a.animated-button.thar-four:hover{
    color: #000;
    border-color: #F7CA18;
    box-shadow: 0 0 10px rgba(247,202,24,0.6);
}
.award-card-featured {
  padding: 40px 25px;
}

.award-card-featured h2 {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.award-year {
  font-size: 22px;
  font-weight: 600;
  color: #555;
}

