:root {
    --font-primary: 'Roboto Condensed', sans-serif;
    --color-primary: #FBD343;
    --color-secondary: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

body{
    background-color: #fff;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: #fff;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-primary);
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 0.5rem;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: bold;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    justify-content: center;
    color:var(--color-primary);
}

.nav-links a {
    text-decoration: none;
    color: var(--color-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* .dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
} */

.nav-links a:hover {
    color: var(--color-primary);
}

/* .dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1001;
    border-radius: 4px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--color-secondary);
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: #f8f8f8;
    color: var(--color-primary);
} */


.buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 28px;
    line-height: 1;
}

.btn-pro {
    background-color:var(--color-secondary);
    color: white;
    border: none;
}

.btn-quote {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-primary);
}

.btn:hover {
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-secondary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section  */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('../assets/images/Hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, rgba(21, 71, 21, 0.8) 0%, rgba(21, 71, 21, 0.6) 100%); */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.welcome-text {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    /* display: flex;
    align-items: center;
    gap: 0.5rem; */
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-title span {
    color: #FFD700;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background-color: #FFD700;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary {
    background-color: transparent;
    color: #FFD700;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

/* Hero Section Ends */
/* About Us  */
.about-company {
    padding: 80px 0;
    background-color: #fff;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
}

.company-label {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.company-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000;
}

.company-title span {
    color: var(--color-primary);
}

.company-title .hr-text {
    display: block;
}

.company-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-number {
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 600;
    min-width: 36px;
}

.feature-text {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-btn {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-2px);
    background-color: var(--color-secondary);
}

/* About Us Ends  */

/* Our Services  */
.services {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-label {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.services-title {
    font-size: 0.9rem;
    color: #2a2a2a;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
   margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.service-title {
    font-size: 1.5rem;
    color: #2a2a2a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: var(--color-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* Our Services Ends  */

Installation Starts  */
.work-process {
    padding: 80px 0 !important;
    background-color: #fff;
}

section.work-process {
    padding: 5%;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
} 

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-label {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.process-title {
    font-size: 3rem;
    color: #2a2a2a;
    margin-bottom: 2rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

 .steps-container::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #E8E8E8;
    z-index: 1;
} 

 .step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.step-image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.step-title {
    font-size: 1.5rem;
    color: #2a2a2a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Installation Ends  */
/* Calculation  */
 .calculator-section {
    position: relative;
    margin: 4rem 0;
    background-color: #f7f7f7;
    padding: 2%;
} 

.calculator-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    min-height: 500px;
    background-color:#fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom:5%;
}

.calculator-image {
    flex: 1;
    position: relative;
}

.calculator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.calculator-content {
    flex: 1;
    background: var(--color-primary);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background pattern for the orange side */
.calculator-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('path-to-your-pattern.svg');
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

.calculator-text {
    position: relative;
    z-index: 1;
    color: var(--color-secondary);
    max-width: 450px;
}

.calculator-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.calculator-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.calculator-button {
    display: inline-block;
    background:var(--color-primary);
    color: var(--color-secondary);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.calculator-button:hover {
    background: var(--color-secondary) ;
    color: white;
    border-color: var(--color-secondary);
    transform: translateY(-2px);
} 

/* Calculation Ends  */

/* Faq Sections  */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

section.faq-section {
    margin-bottom: 5%;
}


.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2.5rem;
    color:var(--color-primary);
    margin-bottom: 1rem;
}

.faq-subtitle {
    color: var(--color-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
}

.question-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2a2a2a;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: white;
    transition: all 0.3s ease;
}

.faq-toggle::before {
    width: 2px;
    height: 12px;
    transform: translateX(-50%);
}

.faq-toggle::after {
    width: 12px;
    height: 2px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Active states */
.faq-item.active {
    border-color: var(--color-secondary);
}

.faq-item.active .faq-question {
    background-color: #f8f8f8;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* Faq Section Ends  */

/* Our Brands  */
.brand-section {
    padding: 60px 0;
    background: #f7f7f7;
    overflow: hidden;
}

.brand-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.brand-header {
    text-align: center;
    margin-bottom: 3rem;
}

.brand-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.brand-subtitle {
    color:var(--color-secondary);
    font-size: 1.1rem;
}

.logo-slider {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.logo-slide-track {
    display: flex;
    width: calc(200px * 12); /* Adjust based on number of logos */
    animation: scroll 30s linear infinite;
}

.logo-slide {
    width: 200px;
    height: 100px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-width: 150px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 6)); /* Half of total width */
    }
}

/* Pause on hover */
.logo-slider:hover .logo-slide-track {
    animation-play-state: paused;
}

/* Our Brand Ends  */

/*Whatsapp Icon Starts */

.whatsapp-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
  }
  
  .support-image {
    background-color: white;
    border-radius: 12px;
    padding: 8px 12px;
    margin-bottom: 10px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .support-image:hover {
    transform: scale(1.05);
  }
  
  .support-icon {
    width: 24px;
    height: 24px;
    margin-right: 6px;
  }
  
  .support-text {
    font-weight: bold;
    font-size: 14px;
    color: #333;
  }
  
  .whatsapp-btn {
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
  }
  
  .whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128C7E;
  }
  
  .whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: white;
  }

/*Whatsapp Icon Ends*/

/* Footer Section  */
.footer {
    background-color: var(--color-secondary);
    color: #fff;
    padding: 80px 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Company Info Styles */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    transform: translateY(-2px);
}

/* Footer Links Styles */
.footer-col h3 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Contact Info Styles */
.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.contact-info i {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Bottom Bar Styles */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
}

.footer-bottom a{
    color: #fff;
    text-decoration: none;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* Footer Section Ends  */
