:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0ea5e9;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --success: #10b981;
    --white: #ffffff;
}

body {
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.7;
}
textarea{
    resize:none;
}

.navbar .dropdown-toggle::after{
    display: none !important;
}
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 */
} 
.logo{
    height:40px;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary) !important;
}

.navbar-brand span {
    color: var(--secondary);
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    margin: 0 15px;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

.navbar-toggler {
    border: none;
    color: var(--dark);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    background-color: #f0f9ff;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    color: var(--gray);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-shape {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.hero-shape-2 {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.hero-stats {
    display: flex;
    margin-top: 40px;
}

.hero-stat {
    margin-right: 40px;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.hero-stat-text {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Services Section */
.services-section {
    background-color: var(--white);
}

.service-card {
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 1.8rem;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-card img {
    display: block;
    width: 100%;
    height:30vh;
    object-fit:cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin: 0; /* Remove any default image spacing */
}
/* Portfolio Section */
.portfolio-section {
    background-color: #f8fafc;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.portfolio-filter-item {
    padding: 8px 20px;
    margin: 5px;
    background-color: var(--white);
    color: var(--dark);
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.portfolio-filter-item.active, .portfolio-filter-item:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.portfolio-overlay-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.portfolio-overlay-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.portfolio-overlay-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--white);
    color: var(--primary);
    border-radius: 50%;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-overlay-title,
.portfolio-item:hover .portfolio-overlay-category {
    transform: translateY(0);
}

.portfolio-item:hover .portfolio-overlay-icon {
    transform: translateY(0);
    opacity: 1;
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
    
}

.about-experience {
    position: absolute;
    bottom: -30px;
    left: 30px;
    background-color: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.about-experience-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-experience-text {
    font-size: 1rem;
}

.about-content {
    padding: 30px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 1.2rem;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.about-feature-content h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.about-feature-content p {
    color: var(--gray);
}

/* Team Section */
.team-section {
    background-color: #f8fafc;
}

.team-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

.team-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
}

.team-social a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Process Section */
.process-section {
    background-color: var(--white);
}

.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.process-number {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-number::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background-color: rgba(37, 99, 235, 0.1);
    z-index: -1;
}

.process-item:last-child .process-number::after {
    display: none;
}

.process-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.process-content p {
    color: var(--gray);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8fafc;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
}

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

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(37, 99, 235, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: var(--gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid rgba(37, 99, 235, 0.1);
}

.author-info h5 {
    margin-bottom: 5px;
}

.author-info .company {
    color: var(--primary);
    font-weight: 500;
}

.author-info .stars {
    color: #fbbf24;
    margin-top: 5px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-item {
    height: 200px;
  }
  
  .section-padding {
        padding-top: 90px;
        padding-bottom:20px;
    }
}


/* Contact Section */
.contact-section {
    background-color: #f8fafc;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 10px;
}


.contact-content h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-content p, .contact-content a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

.form-control {
    height: 50px;
    border: 1px solid #e2e8f0;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.form-control:focus {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

textarea.form-control {
    height: 150px;
    resize: none;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer Section*/
.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 20px;
}

.footer-logo {
    
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-text {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    bottom: -10px;
    left: 0;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer .social-links {
    margin-top: 30px;
}

.footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-right: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.newsletter-form {
    position: relative;
}

.newsletter-form .form-control {
    height: 50px;
    padding-right: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    border-radius: 5px;
}

.newsletter-form .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    width: 40px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0;
    line-height: 40px;
    border-radius: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    
    
    .hero-section {
        padding: 150px 0 100px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-experience {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -50px;
        margin-left: 30px;
        display: inline-block;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767px) {
    
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .hero-stat {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.5rem;
        margin-right: 20px;
    }
}


@media (max-width: 991.98px) {
	.navbar-collapse {
		background-color:#DCE8FC;
		margin-top: 10px;
		padding: 1rem;
		border-radius: 10px;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	}
}

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

.cta{
    background:#797979;
    color:white;
}

.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 {
      position: relative;
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      overflow: hidden;
    }

    .parallax-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7); /* Dark overlay */
      z-index:1;
    }

    .parallax-section .content {
      position: relative;
      z-index: 100;
    }

    .parallax-section h1 {
      font-size: 7rem;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
      z-index:100;
    }
    .parallax-section p {
        color:white;
        z-index:100;
    }