@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
:root {
    --primary: #000;
    --accent: #00FFE7;
    --light: #f8fafc;
    --text: #334155;
    --nav: #fff;
}

body {
    color: var(--text);
    line-height: 1.8;
    overflow-x:hidden;
}

.logo{
    height:40px;
}

.custom-text{
    color:var(--accent);
}
h1, h2, h3, h4, h5 {
    font-weight: 600;
      /*background: var(--primary);*/
      /*-webkit-background-clip: text;*/
      /*-webkit-text-fill-color: transparent;*/
}

/* Centered Logo Navbar */
        .centered-navbar {
            background: var(--nav);
            padding: 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            border-bottom: 1px solid var(--border);
            transition: transform 0.3s;
        }

        .centered-navbar.hide {
            transform: translateY(-100%);
        }

        /* Top Bar */
        .top-bar {
            background: var(--nav);
            padding: 8px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border);
        }

        .top-bar-text {
            color: var(--text);
            margin: 0;
            text-align: center;
        }

        .top-bar-text span {
            color: var(--accent);
            font-weight: 500;
        }

        /* Main Navbar */
        .main-navbar {
            padding: 20px 0;
            position: relative;
        }

        /* Brand */
        .navbar-brand {
            font-size: 2.0rem;
            color: var(--text) !important;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            margin: 0;
            padding: 0;
            z-index: 1;
        }

        /* Navigation Links */
        .nav-item {
            position: relative;
            margin: 0 10px;
        }

        .nav-link {
            color: var(--text) !important;
            font-weight: 400;
            padding: 8px 5px !important;
            position: relative;
            transition: all 0.3s;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }

        /* Icons */
        .nav-icons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-icon {
            position: relative;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s;
        }

        .nav-icon:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }

        .icon-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--accent);
            color: white;
            font-size: 0.7rem;
            padding: 2px 6px;
            border-radius: 10px;
            min-width: 18px;
            text-align: center;
        }

       

        /* Dropdown */
        .dropdown-menu {
            border: none;
            border-radius: 0;
            margin-top: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            padding: 15px 0;
        }

        .dropdown-item {
            padding: 8px 25px;
            color: var(--text);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }

        .dropdown-item:hover {
            background: var(--secondary);
            color: var(--accent);
            padding-left: 30px;
        }

        /* Responsive */
        @media (max-width: 991px) {
            body {
                padding-top: 100px;
            }

            .navbar-brand {
                position: static;
                transform: none;
                font-size: 2rem;
            }

            .navbar-toggler {
                border: none;
                padding: 0;
            }

            .navbar-toggler:focus {
                box-shadow: none;
            }

            .main-navbar {
                padding: 15px 0;
            }

            .navbar-collapse {
                background: var(--nav);
                padding: 20px;
                margin-top: 15px;
                border-top: 1px solid var(--border);
            }

            .nav-link {
                padding: 12px 5px !important;
            }

            .nav-icons {
                margin-top: 15px;
                justify-content: center;
            }

            .search-box input.show {
                width: 100%;
                position: static;
                transform: none;
                margin-top: 15px;
                padding: 8px 0;
            }
        }

        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.8rem;
            }

            .top-bar {
                font-size: 0.8rem;
            }
        }
 /*navbar end */

   
/* banner section */

        .banner-padding{
            padding-top: 130px;
            padding-bottom:30px;
        }
        .highlight-box {
            background: #00FFE7;
            padding: 2rem;
            border-radius: 1rem;
            max-width: 400px;
        }

        .transform-section {
            background: #000;
        }

        

        .stat-card {
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
        }


        @media (max-width: 768px) {
            .highlight-box {
                max-width: 100%;
            }
        }
/* End banner */
    

.btn-primary:hover {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.services-section {
    padding: 120px 0;
    background: var(--light);
}

.service-card {
    padding: 50px 40px;
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.service-icon {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.stats-section {
    padding: 100px 0;
    background: var(--primary);
    color: white;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.testimonial-section {
    padding: 120px 0;
    background: var(--light);
}

.testimonial-card {
    background: white;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    margin: 20px;
}

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.footer {
    background: var(--primary);
    color: white;
    padding: 100px 0 0;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 80px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    margin-right: 15px;
    color: white;
    transition: all 0.4s ease;
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* about us section */
        .about-section {
            background-color: #fff;
            position: relative;
            overflow: hidden;
        }

        .image-block {
            position: relative;
            width: 100%;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .circle-cutout {
            width: 450px;
            height: 450px;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
            z-index: 3;
            border: 15px solid #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .circle-cutout img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .green-circle {
            position: absolute;
            width: 200px;
            height: 200px;
            background: #1B4D3E;
            border-radius: 50%;
            right: -20px;
            bottom: 0;
            z-index: 1;
        }

        .dot-pattern {
            position: absolute;
            width: 200px;
            height: 200px;
            background-image: radial-gradient(#E2E8F0 2px, transparent 2px);
            background-size: 15px 15px;
            right: 50px;
            bottom: 50px;
            z-index: 2;
            opacity: 0.5;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 4;
        }

        .shape-1 {
            position: absolute;
            width: 50px;
            height: 50px;
            background: #FFD700;
            top: 10%;
            right: 20%;
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        }

        .shape-2 {
            position: absolute;
            width: 40px;
            height: 40px;
            background: #FF6B6B;
            top: 30%;
            right: 10%;
            border-radius: 10px;
            transform: rotate(45deg);
        }

        .shape-3 {
            position: absolute;
            width: 30px;
            height: 30px;
            border: 4px solid #4CAF50;
            top: 50%;
            right: 25%;
            border-radius: 50%;
        }

        .btn-primary {
            background: #6366F1;
            border: none;
            font-weight: 500;
        }

        .btn-primary:hover {
            background: #4F46E5;
            transform: translateY(-2px);
        }

        @media (max-width: 991px) {
            .image-block {
                height: 400px;
                margin-top: 40px;
            }

            .circle-cutout {
                width: 300px;
                height: 300px;
            }

            .green-circle {
                width: 350px;
                height: 350px;
                right: -50px;
            }
        }

/* Why choose us */
.why-choose-us {
    background-color: #f8f9fa;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    transition: all 0.3s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    
    transition: all 0.5s ease;
    z-index: -1;
}

.feature-card:hover .card-overlay {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card:hover .icon,
.feature-card:hover h4,
.feature-card:hover p {
    color: var(--primary);
}

.icon {
    width: 70px;
    height: 70px;
    background: rgba(23, 209, 209, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #17d1d1;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .icon {
    background: rgba(255, 255, 255, 0.2);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.feature-card p {
    color: #6c757d;
    margin: 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
    }
    
    .icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}



/* Project Section */
       

        .portfolio .info-card, .image-card {
            aspect-ratio: 1;
            height: 100%;
            position: relative;
        }

        .portfolio .info-card {
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 0;
            padding: 2rem !important;
        }

        .portfolio .image-card {
            overflow: hidden;
        }

        .portfolio .image-card img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
            
        }

        .portfolio .image-card:hover img {
            transform: scale(1.05);
        }

        .portfolio .icon-circle {
            width: 50px;
            height: 50px;
            background: #E5E7EB;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #2D3436;
        }

        .portfolio h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: #2D3436;
        }

        @media (max-width: 768px) {
            .portfolio {
                background: #E5E7EB;
            }
        }
/* end project section */        
        
/* Team Section */
       .team-member {
            position: relative;
            overflow: hidden;
            border-radius: 50%;
            cursor: pointer;
        }

        .member-img {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
        }

        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .member-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .member-info {
            text-align: center;
            color: white;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .member-info h5 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .member-info p {
            margin: 5px 0 0;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .team-member:hover .member-overlay {
            opacity: 1;
        }

        .team-member:hover .member-info {
            transform: translateY(0);
        }

        .team-member:hover img {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .member-info h5 {
                font-size: 0.9rem;
            }
            .member-info p {
                font-size: 0.8rem;
            }
        }

/* Gallery Section */
.gallery-section {
    background-color: var(--white);
    position: relative;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    grid-column: span 1;
    grid-row: span 1;
    border-radius: 10px;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(6) {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 255, 231, 0.8), rgba(0, 255, 231, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-icon {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0);
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Testimonial Section */
.quote-icon {
    top: 0;
    right: 0;
    transform: translate(25%, -25%);
    
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-indicators {
    bottom: -60px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-indicators .active {
    width: 30px;
    border-radius: 15px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Footer Section */
footer a:hover {
    color: var(--accent) !important;
}

.list-inline-item:not(:last-child) {
    margin-right: 0;
}

@media (max-width: 767px) {
    .list-inline-item {
        margin: 0 10px;
    }
}

pre {
    overflow-x: auto; /* Horizontal scrolling for long content */
    white-space: pre-wrap; /* Wrap text while preserving formatting */
    line-height: 1.5; /* Improved line spacing */
    font-size: 16px; /* Comfortable font size */
    margin-bottom: 20px; /* Spacing from other elements */
} 

.section-padding{
    padding-top: 120px;
    padding-bottom:30px;
}

/* Contact Section */
.contact-section {
    background-color: #f5f5f5;
}

.contact-section .info-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-section .info-card:hover {
    transform: translateY(-5px);
}

.contact-section .icon-box {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-section .icon-box i {
    color: white;
    font-size: 20px;
}

.contact-section .info-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-section .info-card p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.contact-section .form-control {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-section .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.contact-section .btn-primary {
    background: var(--primary);
    border: none;
    padding: 12px;
    font-weight: 500;
}

.contact-section .btn-primary:hover {
    background: var(--primary);
}

.contact-section .social-links {
    display: flex;
    gap: 15px;
}

.contact-section .social-links a {
    color: var(--primary);
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-section .social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
    background-color: var(--primary);
}

@media (max-width: 768px) {
    .contact-section .contact-content {
        margin-top: 40px;
        text-align: center;
    }

    .contact-section .social-links {
        justify-content: center;
    }
}
.transform-section h2{
    color:white;
}
.transform-section p{
    color:white;
}
.text-custom{
    background-color:var(--nav);
}



.topbar-list {
  display: flex;
  list-style: none;
  gap: 15px;
  align-items: center;
  text-align:center;
}

.topbar-list li.social-icons a {
  color: #555;
  background:var(--accent);
  margin: 0 5px;
  border-radius:40%;
  font-size: 16px;
}

.topbar-list li.social-icons a:hover {
  color: var(--nav);
  background-color:#555;
}

/* description section */
/* Main scroll section */
.scroll-section {
  position: relative;
  padding-top: 100px;
  min-height: 100vh;
  background-color: #ffffff;
}

/* Left column with image */
.image-column {
  position: relative;
  padding: 0 24px;
  opacity: 0.85;
  transition: opacity var(--transition-speed) ease;
}

.image-column:hover {
  opacity: 1;
}

.sticky-image {
  position: sticky;
  top: 24px;
  padding: 16px 0;
  transition: transform var(--transition-speed) ease;
}

.sticky-image img {
  
  transition: transform var(--transition-speed) ease;

}

.sticky-image img:hover {
  transform: scale(1.02);

}

/* Right column with content */
.content-column {
  padding: 0 24px;
  background: linear-gradient(to right, rgba(255,255,255,0.95), #ffffff);
  border-radius: 12px;
  box-shadow: -4px 0 12px rgba(0,0,0,0.03);
}

.content-wrapper {
  padding: 24px;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
}

.content-wrapper h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.content-wrapper h3 {
  color: var(--dark-color);
  margin-top: 2rem;
  font-weight: 600;
  font-size: 1.5rem;
}

.content-wrapper p {
  color: #4a4a4a;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.content-wrapper .lead {
  color: var(--secondary-color);
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.content-wrapper::-webkit-scrollbar {
  width: 6px;
}

.content-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

.content-wrapper::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 8px;
}

.content-wrapper::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

/* Media queries for responsiveness */
@media (max-width: 991.98px) {
  .image-column {
    margin-bottom: 40px;
    opacity: 1;
  }
  
  .sticky-image {
    position: relative;
    top: 0;
  }
  
  .content-wrapper {
    max-height: none;
    overflow: visible;
    padding: 16px;
  }

  .content-column {
    background: #ffffff;
    box-shadow: none;
  }
}

/* Custom animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}





/* JavaScript helper class */
.end-scrolling {
  position: relative;
}

textarea{
    resize:none;
}

.navbar .dropdown-toggle::after{
    display: none !important;
}
.cta{
    background-color:var(--accent);
}

.img-fit {
  height: 250px; /* ya jo bhi tum fixed height chaaho */
  object-fit: cover;
}



.social-media-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-media-section .view-icon {
  color: #fff;
  font-size: 30px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.social-media-section .social-icons {
  color: #fff;
  font-size: 30px;

}

.social-media-section .position-relative:hover .overlay {
  opacity: 1;
}

.social-media-section  .position-relative:hover .view-icon {
  transform: scale(1);
}

/* Parallax Section */
.parallax-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.parallax-section .parallax-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index:10;
}

.parallax-section .parallax-text {
    color: #fff;
    z-index:10;
}

.parallax-section .subtitle {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    display: block;
    margin-bottom: 20px;
    opacity: 0.9;
    z-index:10;
}

.parallax-section .title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    z-index:10;
}

.parallax-section .custom-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    z-index:10;
}

.parallax-section .custom-btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-5px);
}

.parallax-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index:1;
}
@media (max-width: 768px) {
    .parallax-section .title {
        font-size: 2.5rem;
    }
    
    .parallax-section .subtitle {
        font-size: 1rem;
    }
    
    .parallax-section .custom-btn {
        padding: 12px 30px;
    }
}

/* Optional Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.parallax-section .parallax-text {
    animation: float 3s ease-in-out infinite;
}