:root {
    --primary: #0f172a;
    --accent: #0d6efd;
    --secondary:#0d6efd;
    --light: #f8fafc;
    --text: #334155;
}

body {
    color: var(--text);
    line-height: 1.8;
}

.logo{
    height:40px;
}
h1, h2, h3, h4, h5 {
    font-weight: 600;
}

.navbar {
    padding: 15px 0;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.7);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 0;
}

.nav-link {
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0 10px;
    position: relative;
    color:white;
}
.nav-link:hover{
    color:white;
}
.scrolled .nav-link{
    color:black;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.scrolled .nav-link {
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0 10px;
    position: relative;
    color:black;
}
.nav-link:hover::after {
    width: 100%;
}
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}
.scrolled .navbar-brand{
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(0,0,0,0.9);
}
.navbar-brand:hover{
    color:var(--secondary) !important;
}
@media (max-width:768px){
    .navbar{
        padding: 10px 0;
        transition: all 0.4s ease;
        background: rgba(0, 0, 0, 0.8);
    }

}
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    margin-top:100px;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.btn-custom {
    padding: 15px 40px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s ease;
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.services-section {
    padding: 100px 0;
    background: var(--light);
}

.service-card {
    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;
}

.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 */
}
.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: 100px 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-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.about-us .content-wrapper {
    padding-right: 3rem;
}

.about-us .feature-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.about-us .icon-box {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
}

.about-us .main-image {
    border-radius: 30px;
    transition: transform 0.5s ease;
}

.about-us .main-image:hover {
    transform: scale(1.02);
}

.about-us .experience-badge {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 991px) {
    .about-us .content-wrapper {
        padding-right: 0;
        margin-bottom: 3rem;
    }
}

/* why choose us section */
.why-choose-us {
    background-color: #f8f9fa;
    overflow: hidden;
}

.content-wrapper {
    padding-right: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0066FF;
    transition: all 0.3s ease;
}

.feature-item:hover .icon-box {
    background: #0066FF;
    color: white;
}

.feature-content h4 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
    color: #0066FF;
}

.feature-content h5 {
    font-size: 1rem;
    margin: 0;
    color: #6c757d;
}

.image-wrapper {
    position: relative;
    padding: 2rem;
}

.main-image {
    width: 100%;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #0066FF;
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .content-wrapper {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .image-wrapper {
        padding: 1rem;
    }

    .experience-badge {
        padding: 1rem 1.5rem;
    }

    .experience-badge .number {
        font-size: 2rem;
    }
}

/* Project Section */
.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.event-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    line-height: 1;
}

.event-date .day {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

.event-date .month {
    display: block;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

.event-content {
    padding: 20px;
}

.event-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.event-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.btn-outline-primary {
    border-color: #2c3e50;
    color: #2c3e50;
}

.btn-outline-primary:hover {
    background: #2c3e50;
    color: white;
}

@media (max-width: 768px) {
    .event-img {
        height: 180px;
    }
}

/* Team Section */
.team-card {
  background: #fff;
  border-radius: 30px 30px 0 0;
  text-align: center;
  padding: 15px 10px;
  margin: 15px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  height: 100%;
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-top: -80px;
  border: 5px solid #fff;
}

.team-card h5 {
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 5px;
}

.team-card .role {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.team-card .desc {
  font-size: 14px;
  color: #777;
  padding: 0 10px;
  margin-bottom: 15px;
}

.team-card .social-icons a {
  color: #666;
  margin: 0 6px;
  font-size: 15px;
  transition: 0.3s;
}

.team-card .social-icons a:hover {
  color: #007bff;
}

/* 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-color: rgba(0, 112, 192, 0.8);
    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 */
.testimonial-section {
    background-color: #f8f9fa;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.quote-icon {
    color: #ff6b6b;
}

.testimonial-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    position: static;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--secondary);
}

.carousel-control-prev i,
.carousel-control-next i {
    color: #333;
    font-size: 20px;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
    color: white;
}

@media (max-width: 991px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-image {
        margin-top: 30px;
    }
    
    .testimonial-image img {
        height: 300px;
    }
}

/* Footer Section */
footer a:hover {
    color: white !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: 100px 0;
}

/* 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: #1a237e;
    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: #1a237e;
}

.contact-section .btn-primary {
    background: #1a237e;
    border: none;
    padding: 12px;
    font-weight: 500;
}

.contact-section .btn-primary:hover {
    background: #151b60;
}

.contact-section .social-links {
    display: flex;
    gap: 15px;
}

.contact-section .social-links a {
    color: #1a237e;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-section .social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
    background-color: #151b60;
}

@media (max-width: 768px) {
    .contact-section .contact-content {
        margin-top: 40px;
        text-align: center;
    }

    .contact-section .social-links {
        justify-content: center;
    }
}

/* 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;
  }
}



.navbar .dropdown-toggle::after{
    display: none !important;
}
textarea{
    resize:none;
}

.cta{
    background:var(--secondary) !important;
}

.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;
}

.navbar-toggler {
  border-color: white; /* if you want the border to be white */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.scrolled .navbar-toggler {
  border-color: black; /* Makes the button border black */
}

.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.navbar .active {
  color: var(--accent) !important;
  border-radius: 8px;
  
}


.social-media-section .card,
.social-media-section .card-img-top {
  border-radius: 0 !important;
}