:root {
    /* Primary Color Palette - Warm Earth Tones with Indian Heritage */
    --primary-orange: #D4622A;
    --primary-dark: #8B3E11;
    --primary-light: #E8874E;
    --accent-gold: #C9941A;
    --accent-teal: #0D7377;
    
    /* Secondary Colors */
    --deep-brown: #3E2723;
    --warm-cream: #FFF8E7;
    --soft-beige: #F5E6D3;
    --sage-green: #7FA44D;
    --burgundy: #7D2E2E;
    
    /* Neutral Tones */
    --text-dark: #2C2416;
    --text-medium: #5A5044;
    --text-light: #8B7E6F;
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --light-gray: #E8E4DD;
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(212, 98, 42, 0.08);
    --shadow-md: 0 4px 20px rgba(212, 98, 42, 0.12);
    --shadow-lg: 0 8px 32px rgba(212, 98, 42, 0.16);
    --shadow-xl: 0 12px 48px rgba(139, 62, 17, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

.main-logo {
    height: 60px;
    width: auto;
}

/* Header Styles */
.header-main {
    background: linear-gradient(135deg, var(--white) 0%, var(--warm-cream) 100%);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-orange);
}

.navbar {
    padding: 1rem 0;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-dark) 100%);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 1px;
    line-height: 1;
}

.brand-tagline {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-top: 2px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 20px !important;
    margin: 0 4px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-orange);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.slide-1 {
    background-image: url('img/photo-1486406146926-c627a92ad1ab.jpg');
}

.slide-2 {
    background-image: url('img/photo-1509391366360-2e959784a276.jpg');
}

.slide-3 {
    background-image: url('img/photo-1538108149393-fbbd818959073.jpg');
}

.slide-4 {
    background-image: url('img/photo-1524178232363-1fb2b075b6554.jpg');
}

.slide-5 {
    background-image: url('img/photo-1556761175-b413da4baf725.jpg');
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 62, 17, 0.85) 0%, rgba(212, 98, 42, 0.7) 100%);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    padding: 0 15px;
}

.carousel-caption .container {
    text-align: center;
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.slide-text {
    font-size: 1.4rem;
    color: #FFF8E7;
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-orange) 100%);
    color: #FFFFFF;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 6px 24px rgba(201, 148, 26, 0.4);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(201, 148, 26, 0.6);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-gold) 100%);
    color: #FFFFFF;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    z-index: 3;
    width: 60px;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(212, 98, 42, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(212, 98, 42, 1);
    transform: scale(1.1);
}

.carousel-indicators {
    z-index: 3;
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    opacity: 0.6;
    background-color: transparent;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--accent-gold);
    opacity: 1;
    transform: scale(1.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--warm-cream) 100%);
    position: relative;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-brown);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold));
    margin-bottom: 2rem;
    border-radius: 2px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.core-strengths {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-orange);
}

.strengths-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.strength-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.strength-item i {
    color: var(--sage-green);
    font-size: 18px;
}

.about-image-container {
    position: relative;
    padding: 20px;
}

.about-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.stats-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-orange) 100%);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    justify-content: space-around;
    z-index: 2;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--warm-cream);
    font-size: 0.9rem;
    margin: 0;
}

/* Companies Section */
.companies-section {
    padding: 100px 0;
    background: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 1rem auto 0;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.company-card {
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.company-card:hover::before {
    transform: scaleX(1);
}

.company-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.company-icon i {
    font-size: 32px;
    color: var(--white);
}

.company-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.company-year {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.company-description {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.company-services {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.company-services li {
    padding: 8px 0;
    color: var(--text-medium);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-services i {
    color: var(--primary-orange);
    font-size: 12px;
}

.company-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Sectors Section */
.sectors-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--soft-beige) 100%);
}

.sector-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid var(--light-gray);
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.sector-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-beige) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.sector-card:hover .sector-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
}

.sector-icon i {
    font-size: 36px;
    color: var(--primary-orange);
    transition: color 0.4s ease;
}

.sector-card:hover .sector-icon i {
    color: var(--white);
}

.sector-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--deep-brown);
    margin-bottom: 1rem;
    font-weight: 700;
}

.sector-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--primary-dark) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h60v60H0z" fill="none"/><path d="M30 0L60 30L30 60L0 30z" fill="rgba(255,255,255,0.02)"/></svg>');
    opacity: 0.3;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-subtitle {
    color: var(--warm-cream);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 24px;
    color: var(--accent-gold);
    width: 40px;
    height: 40px;
    background: rgba(201, 148, 26, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.contact-item h5 {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--warm-cream);
    font-size: 1.1rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.contact-form .form-control {
    padding: 14px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(212, 98, 42, 0.1);
    outline: none;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--deep-brown) 0%, var(--text-dark) 100%);
    color: var(--warm-cream);
}

.footer-top {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-description {
    color: var(--warm-cream);
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-heading {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--warm-cream);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-newsletter-text {
    color: var(--warm-cream);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border: none;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 148, 26, 0.4);
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom p,
.footer-bottom a {
    color: var(--warm-cream);
    font-size: 0.9rem;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 991px) {
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-text {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-overlay {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0 !important;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.5s ease;
}
.company-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}
.company-icon {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}

