@charset "UTF-8";
:root 
{
  --color-primary: #8A5AA6; /* आपका मुख्य रंग */
  --color-secondary: #bdbebe; /* आपका मुख्य रंग */
  --color-dark:#010101;
  --white: #ffffff;
  --orange:#fc7b54;
  --light:#f8f9fa;
  --dark-black:#333333;

  --bg-dark:#010101;

  --bg-light-green:#efffdb;
  --success-green:#00D100;
  --light-green:#65E065;

  /*temp side bar*/
  --header-height: 70px;
  --primary-color: #8a5aa6; /* Aapka brand color */
  --text-dark: #333;
  --bg-white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--color-dark);
    overflow-x: hidden;
}
.text-primary-main{
    color: var(--color-primary);
}
a {
    text-decoration: none !important;
    outline: none;
}

a, a:hover, a:focus {
    text-decoration: none !important;
}

.text-primary-dark{
    color: var(--color-accent);
}

.main-content{
    margin-top: 70px; /* Header height jitna margin */
    min-height: calc(100vh - 70px);
}

/* Construction Top Bar Styling */
.construction-top-bar {
    background-color: red; /* Dark background */
    color: #ffffff;
    padding: 10px 0;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid #ed5a5a; /* Renovers Red line */
}

/* Chota animation dot */
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ed5a5a;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(0.9); opacity: 0; }
}

/* Underline fix for all links in your style.css */
a, .nav-item {
    text-decoration: none !important; /* Underline hatane ke liye */
}
/*Under Construction*/

/* Header Start */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--bg-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1050;
    display: flex;
    align-items: center;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px; /* Center alignment for large screens */
    margin: 0 auto;
    padding: 0 20px;
}
/* 2. Left Section: Logo & Hamburger */
.left-section {
    display: flex;
    align-items: center;
    gap: 15px;
}
.hamburger {
    display: none; /* Desktop par hide */
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
}
.logo img {
    height: 45px;
    width: auto;
    display: block;
}

/* 3. Middle Section: Desktop Nav */
.desktop-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}
.desktop-nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}
.desktop-nav ul li a:hover {
    color: var(--primary-color);
}

/*Login btn star*/
.btn-login-modern {
    background: #1a1a1a;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--color-accent);
}
.btn-login-modern:hover {
    background: transparent;
    color: var(--color-accent) !important;
    transform: translateY(-3px);
}
.btn-login-modern i{
    font-size: 1.2rem;
}
/*Login btn end*/
/* 4. Right Section: User Profile Dropdown */
.user-section {
    position: relative;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50px;
    transition: background 0.3s;
}
.user-info:hover {
    background: #f8f9fa;
}
.welcome-text {
    font-size: 14px;
    color: #666;
}
.welcome-text strong {
    color: var(--text-dark);
    display: block; /* Username niche dikhega welcome ke */
    line-height: 1.2;
}
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.mobile-sidebar{
    display: none;
}


/* Header End */

/*Hero Section Start*/
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: min(2em, 3%);
}
.hero-title {
    font-weight: 800;
    font-size: clamp(1.8rem, 10vw, 4.5rem);
    line-height: 1.1;
    text-align: left;
    margin-top: 50px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-title-second{
    color: var(--color-primary);
}
.hero-description{
    font-size: clamp(0.6rem, 3vw, 1.4rem);
    text-align: left;
    font-weight: 300;
    opacity: 75%;
    margin-bottom: 50px;
}
.hero-tag{
    margin-bottom: 20px;
}
.hero-tag i {
    font-size: clamp(0.7rem, 1.2vw, 1.4rem);
    color: var(--white);
    background: var(--success-green);
    border-radius: 50%;
    padding: 0.5rem;
    margin-right: 10px;
}
.hero-tag-text{
    font-size: clamp(0.7rem, 1.2vw, 1.4rem);
    color: var(--white);
    font-weight: 300;
    letter-spacing: 0.2rem;
}
.hero-form-card {
    background: white;
    border-radius: 12px;
    padding: min(1.8em, 5%);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.hero-form-title{
    color: var(--color-primary);
    margin-top: 1.5rem;
    font-size: clamp(1.3rem, 18vw, 1.7rem);
    text-align: center;
    font-weight: 600;
}
.hero-form-dec{
    color: var(--color-secondary);
    margin-bottom: 1.6rem;
    font-size: clamp(0.8rem, 1vw, 1.2rem);
    text-align: center;
    font-weight: 400;
}
.hero-form-btn{
    width: -webkit-fill-available;
    width: 100%;
    margin-top: 10px;
    background: var(--color-primary);
    color: var(--white);
    font-size: clamp(1rem, 1.2vw, 1.4rem);
    text-transform: uppercase;
}
.hero-form-tc{
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-size: clamp(0.8rem, 1vw, 1.2rem);
    text-align: center;
    font-weight: 400;
    margin-top: 20px;
}
.form-control-custom {
    height: 50px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 14px;
    margin-bottom: 15px;
}
.form-control-custom:focus {
    border-color: #8a5aa6;
    box-shadow: none;
    outline: none;
}
.btn-submit {
    background: #8a5aa6;
    color: white;
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-submit:hover {
    background: #d44d4d;
    transform: translateY(-2px);
}
/*Hero Section End*/

/*Sections Start*/
.section-bg{
    color: white;
    text-align: center !important;
    background-color: var(--color-background-dark);
}
.section-main{
    text-transform: uppercase !important;
    color: var(--color-primary);
    /*padding: min(2em, 2%);*/
    margin-bottom: 20px;
    text-align: center;
    font-size: clamp(0.7rem, 1.2vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 0.2rem;
}
.section-title-big{
    margin-bottom: 1.8rem;
    font-size: clamp(0.8rem, 8vw, 2rem);
    font-weight: 600;
    /* box-sizing: border-box; */
    /* display: block; */
    text-align: center;
    color: var(--dark-black);
}
.section-title-highlight{
    color: var(--color-primary);
}
/*Sections End*/

/*Service section start*/
.service-section{
    padding: min(2em, 3%);
    background: var(--white);
}
.pro-service-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
    margin-bottom: 20px;
}

.service-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-icon-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #8a5aa6;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pro-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
}

.pro-service-card:hover img {
    transform: scale(1.1);
}

.pro-link {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

.pro-link:hover {
    color: #8a5aa6;
}

.tracking-widest {
    letter-spacing: 0.25em;
}
/*Service section End*/

/*Process section start*/
.process-section {
    padding: min(2em, 3%);
    background: var(--light);
}
.process-box { position: relative; padding: 20px; }
.step-number {
    font-size: clamp(5rem, 10vw, 4rem);
    font-weight: 800;
    color: rgb(146 86 182 / 17%);
    line-height: 1;
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.process-title{
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
    text-align: center;
    font-size: clamp(0.8rem, 5vw, 1.2rem);
}
.process-description{
    color: var(--color-secondary);
    font-size: clamp(0.8rem, 1.2vw, 1.4rem);
    text-align: center;
}
/*Process section end*/

/*why choose us start*/
.why-choose-section {
    padding: min(2em, 3%);
    background: var(--white);
}
.wcu-info-column-left{
    margin-top: 10px;
}
.boxes{
    margin-bottom: 20px;
}
.experience-card-green {
    top: 50%;
    width: 120px;
    text-align: center;
    align-content: center;
    height: 120px;
    left: 55%;
    background: var(--success-green);
    color: var(--white);
    border-radius: 15%;
    padding: min(1.5em, 2%);
}

.why-choose-section .wcu-call-info{
    font-size: clamp(0.8em, 4vw, 1.5rem);
    font-weight: 600;
    padding: 20px 0;
    text-transform: uppercase;
}
.why-choose-section .wcu-call-des{
    margin-bottom: 0;
    font-size: clamp(0.8em, 1vw, 1.2rem);
}
.why-choose-section .wcu-call-btn{
    background: var(--color-primary);
    color: var(--white);
    margin-bottom: 20px;
}
.why-choose-section .wcu-img-big{
    border-radius: 10px;
    margin-top: 10px;
}
.why-choose-section .wcu-img-small{
    border-radius: 10px;
    margin-top: 10px;
}

/*why choose us end*/

/*Portfolio Section Start*/
.portfolio-section{
    padding: min(2em, 3%);
    background: var(--white);
}
.portfolio-contact{
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(https://i.pinimg.com/736x/c2/76/f1/c276f1624761b36ae5fc2e23e1671bdc.jpg);
}
.portfolio-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.portfolio-filters .filter-btn {
    margin-bottom: 8px; /* Mobile par jab wrap ho toh gap dikhe */
}

.portfolio-filters {
    margin-bottom: 30px !important;
}

.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }

.portfolio-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 25px; opacity: 0; transition: 0.4s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-card:hover img { transform: scale(1.1); }

.view-btn {
    position: absolute; top: 20px; right: 20px;
    width: 40px; height: 40px; background: #8a5aa6;
    color: white !important; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: 0.3s;
}
.view-btn:hover { background: #000; transform: rotate(90deg); }

.filter-btn {
    background: #f8f9fa; 
    border: 1px solid #eee;
    padding: 8px 22px; 
    border-radius: 50px;
    font-size: 13px; 
    font-weight: 700; 
    transition: 0.3s;
    margin-right: 10px;
}
.filter-btn.active { background: #8a5aa6; color: white; border-color: #8a5aa6; }    
/*Portfolio Section End*/

/*Counter-section Start*/
.counter-section{
    padding: min(2em, 3%);
    background: var(--light);
}
.cs-number{
    font-size: clamp(1.2em, 8vw, 3rem);
    font-weight: 700;
    color: var(--success-green);
    text-align: center;
}
.cs-des{
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: clamp(0.8em, 2vw, 1.2rem);
    font-weight: 400;
    color: var(--success-green);
}
/*Counter-section End*/

/*Testimonial Start*/
/* Testimonial Section Spacing */
.testimonial-section {
    padding: min(2em, 3%);
    background: var(--white);
    overflow: hidden;
}
.testimonial-left-content{
    text-align: center;
}
.testimonial-left-content p{
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}
.testimonial-left-content a{
    cursor: pointer;
    background: var(--color-primary);
    color: var(--white);
}

.testimonial-left-content a:hover{
    background: var(--dark-black);
    color: var(--white);
}

.slider-container-right {
    padding: 20px 0 40px 0;
    position: relative;
}

.custom-testi-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 30px;
    margin: 10px; /* Cards ke beech gap */
    min-height: 280px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.custom-testi-card:hover{
    cursor: pointer;
    transform: translateY(-10px);
    border-color: var(--success-green);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.custom-testi-card i{
    margin-right: 10px;
    font-size: clamp(1em, 2vw, 2rem);
}
.custom-testi-card .user-name{
    font-size: clamp(0.8em, 1vw, 2rem);
    margin-bottom: 0;
    font-weight: 600;
    color: var(--dark-black);
}
.custom-testi-card .user-from{
    color: var(--color-secondary);
    font-size: clamp(0.8em, 4vw, 1rem);
}

.custom-testi-card img{
    width: 50px;
    height: auto;
    margin-right: 10px;
    border-radius: 50%;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
    font-style: italic;
}

.slick-dots { bottom: -30px; }
.slick-dots li button:before { color: var(--color-primary); !important; font-size: 12px; }
/*Testimonial End*/

/*Our Trusted Brand Start*/
.brand-section{
    padding: min(2em, 3%);
    background: var(--white);
}
.brand-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    background: var(--white);
}
.brand-wrapper .brand-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 30px; /* Logos ke beech ka gap */
    outline: none;
}
.brand-wrapper .brand-item img {
    max-width: 140px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}
.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.slick-track {
    display: flex !important;
    align-items: center !important;
    transition-timing-function: linear !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); }
}
/*Our Trusted Brand End*/

/*call to action btn section start*/
.cta-section{
    padding: min(2em, 3%);
    background: var(--white);
}
.cta-section .cta-bg{
    background: var(--bg-dark);
    text-align: center;
    padding: min(2rem, 5%);
    border-radius: 15px;
    color: var(--white);
}
/*call to action btn section end*/

/*Footer start*/
.footer-main{
    background: var(--color-primary);
    padding: min(2em, 3%);
}
.footer-main .description{
    color: var(--white);
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { 
    color: var(--white); 
    text-decoration: none; 
    font-size: 14px; 
    transition: 0.3s; 
}
.footer-links a:hover { color: var(--orange); padding-left: 5px; }

.social-icon {
    width: 35px;
    height: 35px;
    background: var(--color-secondary);
    color: white;
    display: flex;
    align-items: center;
    margin-right: 10px;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}
.social-icon:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-3px);
}
.tracking-widest { letter-spacing: 2px; }
/*Footer end*/

/*Floating Whats app btn start*/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}
.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
}
/*Floating Whats app btn end*/

/*Contact us page start*/
.contact-hero {
    background: #f8f9fa;
    padding: 60px 0 60px 0;
}

/* Left Side Icons */
.contact-icon {
    width: 45px; height: 45px;
    background: rgba(237, 90, 90, 0.1);
    color: #ed5a5a;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 16px;
}

.social-icon-btn {
    width: 35px; height: 35px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon-btn:hover {
    background: #ed5a5a;
    border-color: #ed5a5a;
}

/* Floating Labels Styling */
.form-control:focus {
    border-bottom: 2px solid #ed5a5a !important;
}

/*Contact us Start*/
.tracking-widest {
    letter-spacing: 0.2em;
}

/* Iconic Card Design */
.simple-contact-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

/* Subtle Hover effect */
.simple-contact-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.contact-row {
    background: #fff;
    transition: 0.2s;
}

/* Icon Color */
.icon-purple {
    color: var(--color-primary-dark);
    font-size: 20px;
}

.contact-icon-wrapper img {
    opacity: 0.8;
}
/*Contact us page end*/

/*FAQ Section Start*/
.faq-section{
    padding: min(2em, 3%);
    background: var(--white);
}
.faq-wrapper { border-top: 1px solid #f0f0f0; }
    
.faq-item {
    border-bottom: 1px solid #f0f0f0;
    background: transparent;
    transition: background 0.3s ease;
}

.faq-trigger {
    padding: 32px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.faq-number {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: #ced4da;
    width: 40px;
    transition: 0.3s;
}

.faq-title {
    font-weight: 700;
    font-size: 18px;
    color: #212529;
    flex: 1;
    padding-right: 20px;
}

/* Custom Animated Plus Icon */
.faq-plus {
    position: relative;
    width: 20px;
    height: 20px;
    transition: 0.4s;
}
.faq-plus::before, .faq-plus::after {
    content: '';
    position: absolute;
    background: #212529;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
/* Horizontal line */
.faq-plus::before {
    top: 9px; left: 0; width: 100%; height: 2px;
}
/* Vertical line */
.faq-plus::after {
    left: 9px; top: 0; width: 2px; height: 100%;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.faq-content {
    padding: 0 0 32px 40px;
    color: #6c757d;
    font-size: 15px;
    line-height: 1.8;
    max-width: 90%;
}

/* Active State */
.faq-item.active .faq-plus { transform: rotate(135deg); }
.faq-item.active .faq-plus::before, .faq-item.active .faq-plus::after { background: var(--color-primary); }
.faq-item.active .faq-title { color: var(--color-primary); }
.faq-item.active .faq-number { color: var(--color-primary); opacity: 0.6; }
/*FAQ Section End*/

/*Portfolio page start*/
.btn-filter {
    border: 1px solid #eee;
    background: transparent;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    transition: 0.3s;
    margin-right: 10px;
}

.btn-filter.active, .btn-filter:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
/*Services Page Start*/
.tracking-widest { letter-spacing: 0.3em; }
.fw-black { font-weight: 900; }

/* Service Card Hover Effect */
.service-card-pro {
    transition: transform 0.3s ease;
}

.service-img-wrap {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-img-wrap img {
    transition: transform 0.5s ease;
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.service-card-pro:hover img {
    transform: scale(1.05);
}
/*Services Page End*/

/* Project Cards */
.project-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.project-img {
    position: relative;
    aspect-ratio: 4/5; /* Architectural photography look */
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s transform ease;
}

/* Overlay Effect */
#portfolio-grid{
    margin-bottom: 20px;
}
.project-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.3s ease;
}

.project-info {
    color: #fff;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-info {
    transform: translateY(0);
}
/*Portfolio page end*/


/* ==========================================================================
   COMPLETE RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* 1. Large Laptops (1200px and up) */
@media (min-width: 1200px) {
    .container { max-width: 1140px; }
}

/* 2. Tablets & Small Laptops (Max 991px) */
@media (max-width: 991px) {
    .main-header { padding: 0 30px }
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
    }
    .hamburger { display: block; }
    /* 5. Mobile Sidebar Menu */
    .mobile-sidebar {
        position: fixed;
        top: 0;
        left: -300px; /* Initially hidden */
        width: 280px;
        height: 100vh;
        background: #ffffff;
        z-index: 2000;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 5px 0 25px rgba(0,0,0,0.15);
        display: flex;
        flex-direction: column;
    }
    .mobile-menu-toggle {
        display: block !important;
        background: #f8f9fa;
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 5px 10px;
    }
    .sidebar-header .btn-close{
        
    }
    /* Jab Sidebar Open ho */
    .mobile-sidebar.active {
        left: 0;
    }
    /* Sidebar Header Start */
    .sidebar-header {
        height: var(--header-height);
        text-align: end;
    }
    .sidebar-header .btn-close{
        padding-top: 20px;
        padding-right: 20px;
        font-size: 48px;
        outline: none;
        border: none;
        background: none;
        color: var(--dark-black);
        line-height: 1;
    }
    /* Sidebar Links */
    .sidebar-links {
        list-style: none;
        padding: 20px 0;
        margin: 0;
    }
    .sidebar-links li{
        border-bottom: 0.5px solid var(--color-secondary);
    }
    .sidebar-links li a {
        display: flex;
        align-items: center;
        padding: 12px 25px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.2rem;
        transition: all 0.3s;
        gap: 15px; /* Icon aur text ke beech space */
    }
    .sidebar-links li a i {
        width: 20px;
        color: var(--color-secondary); /* Aapka theme color */
        font-size: 22px;
    }
    .sidebar-links li a:hover {
        background: #fdf2f2;
        color: #ed5a5a;
        padding-left: 30px; /* Hover effect */
    }
    /* Full Screen Overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Black transparent background */
        z-index: 1999;
        display: none; /* Initially hidden */
        backdrop-filter: blur(3px); /* Glass effect */
    }
    /* Jab Overlay Active ho */
    .sidebar-overlay.active {
        display: block;
    }
    /* Sidebar Header End */
    .desktop-nav { display: none; }
    .welcome-text { display: none; } /* Sirf Round icon dikhega */
    .header-container { padding: 0 15px; }
    .hero-title {
        font-weight: 800;
        line-height: 1.1;
        text-align: center;
        margin-top: 50px;
        color: white;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .hero-tag{
        margin-bottom: 20px;
        justify-content: space-evenly;
    }
    .hero-description {
        text-align: center;
        font-weight: 300;
        opacity: 75%;
        margin-bottom: 16px;
    }

}

/* Mobile Phones */
@media (max-width: 576px) {
    .portfolio-overlay {
        opacity: 100;
    }
    .main-header { padding: 0; }
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
    }
    .logo img { height: 35px; }
    .user-avatar { width: 35px; height: 35px; }

    /* 5. Mobile Sidebar Menu */
    .mobile-sidebar {
        position: fixed;
        top: 0;
        left: -300px; /* Initially hidden */
        width: 280px;
        height: 100vh;
        background: #ffffff;
        z-index: 2000;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 5px 0 25px rgba(0,0,0,0.15);
        display: flex;
        flex-direction: column;
    }
    /* Jab Sidebar Open ho */
    .mobile-sidebar.active {
        left: 0;
    }
    /* Sidebar Header Start */
    .sidebar-header {
        height: var(--header-height);
        text-align: end;
    }
    .sidebar-header .btn-close{
        padding-right: 20px;
    }
    /* Sidebar Links */
    .sidebar-links {
        list-style: none;
        padding: 20px 0;
        margin: 0;
    }
    .sidebar-links li{
        border-bottom: 0.5px solid var(--color-secondary);
    }
    .sidebar-links li a {
        display: flex;
        align-items: center;
        padding: 12px 25px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.2rem;
        transition: all 0.3s;
        gap: 15px; /* Icon aur text ke beech space */
    }
    .sidebar-links li a i {
        width: 20px;
        color: var(--color-secondary); /* Aapka theme color */
        font-size: 22px;
    }
    .sidebar-links li a:hover {
        background: #fdf2f2;
        color: #ed5a5a;
        padding-left: 30px; /* Hover effect */
    }
    /* Full Screen Overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Black transparent background */
        z-index: 1999;
        display: none; /* Initially hidden */
        backdrop-filter: blur(3px); /* Glass effect */
    }
    /* Jab Overlay Active ho */
    .sidebar-overlay.active {
        display: block;
    }
    /* Sidebar Header End */
    
    /* Logout button dropdown width fix for mobile */
    .dropdown-menu {
        width: 200px;
        position: absolute !important;
    }
    .hero-title {
        font-weight: 800;
        line-height: 1.1;
        text-align: center;
        margin-top: 50px;
        color: white;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .hero-tag{
        margin-bottom: 20px;
        justify-content: space-evenly;
    }
    .hero-description {
        text-align: center;
        font-weight: 300;
        opacity: 75%;
        margin-bottom: 16px;
    }

    /*Why-scoose-us section Start*/
    .why-choose-us .experience-green-card{
        width: 100%!important;
        align-content: center;
        position: absolute;
        background: var(--success-green);
        color: var(--white);
        border-radius: 1rem!important;
    }
    /*Why-scoose-us section ENd*/
}
