/* Global Styles */
:root {
    --primary-color: #28a745;
    --secondary-color: #0d1b2a;
    --text-color: #f8f9fa;
    --light-text: #e9ecef;
    --dark-text: #212529;
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--secondary-color);
    line-height: 1.6;
}
.logo{
    height:40px;
}
a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

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

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #218838;
}

.btn-outline-light:hover {
    color: var(--dark-text);
}

.section-tag {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Navbar Styles */
.navbar {
    background-color: var(--secondary-color);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.75rem;
    letter-spacing: 0.5px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 0.6rem !important;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-custom {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.25rem;
}

.phone-number {
    border-left: 1px solid var(--border-color);
    padding-left: 1.5rem;
    margin-left: 1.5rem;
}

.phone-icon {
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.phone-text {
    font-weight: 500;
}

.search-icon {
    font-size: 1.25rem;
}

/* Hero Section Styles */
.hero-section {
   
    background-size: cover;
    padding: 6rem 0;
    position: relative;
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-section h1 {
    color: white;
    line-height: 1.2;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
}

.phone-link {
    color: white;
    font-weight: 500;
}

.phone-circle {
    background-color: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Section Styles */
.about-section {
    background-color: var(--secondary-color);
    padding: 5rem 0;
}

.about-section h2 {
    color: white;
}

/* Services Section Styles */
.services-section {
    background-color: #0a1622;
    padding: 5rem 0;
}

.services-section h2 {
    color: white;
}

.service-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.service-card img {
    display: block;
    width: 100%;
    height:40vh;
    object-fit:cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin: 0; /* Remove any default image spacing */
}
.service-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(rgba(40, 167, 69, 0.9), rgba(40, 167, 69, 0.9)), 
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80') no-repeat center center;
    background-size: cover;
    padding: 5rem 0;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

.btn-outline-light {
    color: white;
    border-color: white;
}

/* Footer Styles */
.footer {
    background-color: var(--secondary-color);
    padding: 5rem 0 3rem;
    border-top:2px solid var(--primary-color);
}

.footer h3 {
    color: white;
    font-weight: 600;
}

.footer p, .footer a {
    color: rgba(255, 255, 255, 0.7);
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

.contact-info i {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--secondary-color);
        padding: 1rem;
        border-radius: 5px;
        margin-top: 1rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section .d-flex {
        justify-content: center;
    }
    
    .about-section, .services-section, .cta-section {
        padding: 3rem 0;
    }
}

/* why choose us */
.why-choose-us {
     background: linear-gradient(rgba(40, 167, 69, 0.9), rgba(40, 167, 69, 0.9)), 
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80') no-repeat center center;
}

.why-choose-us .feature-card {
    background: #2d2d2d;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #3d3d3d;
}

.why-choose-us .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.why-choose-us .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    opacity: 0;
    transition: all 0.3s ease;
}

.why-choose-us .feature-card:hover::before {
    opacity: 1;
}

.why-choose-us .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.why-choose-us .icon-wrapper.green {
    background: rgba(40, 167, 69, 0.2);
}

.why-choose-us .icon-wrapper.cyan {
    background: rgba(6, 182, 212, 0.1);
}

.why-choose-us .icon-wrapper i {
    font-size: 28px;
}

.why-choose-us .icon-wrapper.green i {
    color: #28a745;
}

.why-choose-us .icon-wrapper.cyan i {
    color: #06b6d4;
}

.why-choose-us .feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
}

.why-choose-us .feature-card p {
    color: #a0a0a0;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-choose-us .feature-card {
        padding: 20px;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper i {
        font-size: 24px;
    }
}

/* Portfolio Section */
.section-padding{
        padding:100px 0;
}

.honeycomb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    padding: 0;
    transform: translateY(34.375px);
}

.honeycomb-cell {
    flex: 0 1 250px;
    max-width: 250px;
    height: 217.5px;
    margin: 65.4px 12.5px 25px;
    position: relative;
    padding: 0.5em;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.honeycomb-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
}

.honeycomb-cell img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
}

.honeycomb-cell:hover {
	transform: scale(1.05);
}

.honeycomb-cell:hover .honeycomb-content {
    opacity: 1;
}

.honeycomb-content h3 {
    font-size: 1.2em;
    margin: 0 0 0.5em;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.honeycomb-content p {
    font-size: 0.8em;
    margin: 0;
    color: #ccc;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.honeycomb-cell:hover .honeycomb-content h3,
.honeycomb-cell:hover .honeycomb-content p {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .honeycomb-cell {
        margin: 45.4px 10px 25px;
    }
}

@media (max-width: 480px) {
    .honeycomb-cell {
        margin: 35.4px 8px 25px;
    }
}

/* Team Section */
.team-section{
    background-color:black;
}
.accent-line {
    width: 100px;
    height: 6px;
    background: #7bc62d;
    margin: 20px 0;
    border-radius: 3px;
}

.team-card {
    background: black;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.member-image {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
}

.circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.circle-1 {
    background: #60FA5C;
    animation: pulse 2s ease-in-out infinite alternate;
}

.circle-2 {
    background: #42F7FE;
    animation: pulse 2s ease-in-out infinite alternate-reverse;
}

@keyframes pulse {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.2) translate(10px, -10px);
    }
}

.image-container {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
    margin: 10px auto;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.member-info {
    margin-top: 20px;
}

.member-info h4 {
    margin-bottom: 5px;
    color: #E9ECEC;
}

.position {
    color: #7bc62d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.bio {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.team-card:hover .circle-1 {
    animation-duration: 1.5s;
    opacity: 0.5;
}

.team-card:hover .circle-2 {
    animation-duration: 1.5s;
    opacity: 0.5;
}

.team-card:hover img {
    transform: scale(1.1);
}

pre {
    font-family: 'Poppins', sans-serif;
    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 */
}
/* Gallery Section */
.gallery-item {
  display: block;
  overflow: hidden;
  position: relative;
  padding: 0;
  height: 300px; /* Fixed height for all gallery items */
}

.gallery-item img {
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Remove any gaps between images */
.gl-row {
  margin: 0;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.gl-4, .gl-6 {
  padding: 0;
}

/* Contact Section */
.contact-section .avatar-wrapper {
    position: relative;
    width: 200px;
}

.contact-section .avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    
}

.contact-section .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-section .chat-bubble {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.contact-section .info-list {
    margin-top: 40px;
    padding: 0 15px;
}

.contact-section .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.contact-section .icon-wrapper {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-section .icon-wrapper i {
    color: white;
    font-size: 18px;
}

.contact-section .info-item p {
    margin: 0;
    color: #f8f9fa;
    word-break: break-word;
}

/* Mobile-first responsive fix */
@media (max-width: 600px) {
    .contact-section .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-section .icon-wrapper {
        margin-right: 0;
        margin-bottom: 8px;
    }
}


.contact-section .contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.contact-section .input-group-text {
    background: transparent;
    border-right: none;
}

.contact-section .form-control {
    border-left: none;
    padding: 12px;
}

.contact-section .form-control:focus {
    box-shadow: none;
}

.contact-section .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-section .btn-primary:hover {
    background: #1fa1af;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .contact-section .contact-info {
        text-align: center;
        margin-bottom: 40px;
    }

    .contact-section .avatar-wrapper {
        margin: 0 auto;
    }

    .contact-section .info-item {
        justify-content: center;
    }
}

/* Testimonial Section */
.testimonial-dark {
    background: #111;
    position: relative;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
    color:var(--primary-color);
}

.review {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.client-details h5 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.client-details span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

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

.nav-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
    
    .review {
        font-size: 1rem;
    }
    
    .client-img {
        width: 50px;
        height: 50px;
    }
}


/* description section */
.description-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.image-block {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

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

.content-block {
  padding: 4rem 2rem;
}

@media (max-width: 991.98px) {
  .description-section {
    flex-direction: column;
  }

  .image-block {
    position: relative;
    height: auto;
  }

  .image-block img {
    height: auto;
  }
}


/* Parallax Section */

.img-fit {
  height: 250px; /* ya jo bhi tum fixed height chaaho */
  object-fit: cover;
}


/* Social Media */
.social-card {
  height: 300px;
}

.social-card img {
  width: 100%;
  height: 40vh;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.social-card:hover img {
  transform: scale(1.05);
}

.social-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
}

.social-card:hover .overlay {
  opacity: 1;
}

.social-card .social-icons a {
  font-size: 18px;
  padding: 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: background 0.3s;
}

.social-card .social-icons a:hover {
  background: var(--primary-color);
}




/* 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;
}


.navbar .active {
  color: var(--primary-color) !important;
  border-radius: 8px;
  
}