:root {
    --primary: #0B2447;
    --secondary: #FFB800;
    --light: #F8F9FA;
}

.logo{
    height:40px;
}
/* Enhanced Navbar */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar.scrolled .nav-link {
    font-weight: 600;
    position: relative;
    padding: 8px 16px !important;
    color:black;
}

.nav-link {
    color : black;
    font-weight: 600;
    position: relative;
    padding: 8px 16px !important;
}
.nav-link:hover {
    color : var(--secondary);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.nav-link.active {
  background-color: #CEE2FE;
  border-radius: 8px;
  color: white;
}
.navbar .navbar-collapse.show {
  background-color: rgba(255, 255, 255, 0.95); 
}

.phone-btn {
    background: var(--primary);
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Enhanced Hero Section */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.btn-primary-custom {
    background: var(--secondary);
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,184,0,0.3);
}

/* Social Icons */
.social-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-icon a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateX(-5px);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--light);
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 30px;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .social-icons {
        display: none;
    }
}

/* Service Section */
.services-section {
	background-color: #f8f9fa;
}

.service-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-image {
	height: 250px;
	overflow: hidden;
}



.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.service-images img{
	height: 350px;
	overflow: hidden;
}
.service-card:hover .service-image img {
	transform: scale(1.1);
}

.service-icon {
	position: absolute;
	top: 220px;
	right: 20px;
	width: 60px;
	height: 60px;
	background: #ffd700;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #000;
}

.service-content {
	padding: 30px;
	padding-top: 40px;
}

.service-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.service-content p {
	color: #6c757d;
	margin-bottom: 20px;
}

.service-link {
	color: #0d6efd;
	text-decoration: none;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
}

.service-link:hover {
	color: #0a58ca;
}

@media (max-width: 991px) {
	.service-card {
		margin-bottom: 30px;
	}
}

.custom-card {
  position: relative;
  border: 2px solid var(--primary);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.icon-border {
  position: absolute;
  top: -15px;
  left: -15px;
  background: white;
  padding: 10px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  color: var(--primary);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

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 */
}

/* why choose us section */
.why-choose-us {
    padding: 100px 0;
    background: #fff;
}

.why-choose-us .card {
    transition: all 0.3s ease;
    border: none;
    background: rgba(255,184,0,0.2);
}

.why-choose-us .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.play-button {
    width: 60px;
    height: 60px;
    background: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.guarantee-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.text-heading{
    color:var(--primary);   
}

/* Testimonial Section */
 .testimonial-card {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

/* footer section */
.footer-section {
    background-color: #1a1a1a;
}

.text-light-gray {
    color: #999;
}

.footer-brand p {
    margin-bottom: 1.5rem;
}

.footer-section .social-links {
    display: flex;
    gap: 10px;
}

.footer-section .social-link {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section .social-link:hover {
    background: #0066FF;
    color: #fff;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #0066FF;
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #999;
    margin-bottom: 15px;
}

.footer-contact i {
    color: #0066FF;
}

.footer-bottom {
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom a {
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
    .hero-section .social-icon{
        display:none;   
    }
}

/* Team Section */
.team-section .team-member {
    transition: all 0.3s ease;
}

.team-section .member-img {
    position: relative;
    height: 300px;
    width: 200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.team-section .member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-section .team-member:hover .member-img {
    transform: translateY(-10px);
}

.team-section .social-links {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.team-section .social-link {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    padding:5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-section .social-link:hover {
    background: #0066FF;
    color: #fff;
    transform: translateY(-3px);
}

.team-section .social {
    width: 35px;
    height: 35px;
    background: #E5E6E8;
    color: black;
    border-radius: 50%;
    font-size:15px;
    padding:5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-section .social:hover {
    background: #4362FE;
    color: white;
    transform: translateY(-3px);
}

.team-member .social-links {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none; /* Prevent interaction when hidden */
}

.team-member:hover .social-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


@media (max-width: 768px) {
    .team-section .member-img {
        height: 250px;
        width: 170px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: #0d2c54;
    color: white;
    padding: 40px;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-info p {
    font-size: 1rem;
}

.info-list {
    margin: 20px 0;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item i {
    font-size: 20px;
    margin-right: 12px;
}

.info-item p {
    margin: 0;
    font-size: 15px;
    word-break: break-word;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.social-links a {
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #4dabf7;
    transform: translateY(-3px);
}

.contact-form {
    padding: 40px;
    width: 60%;
}

.contact-form h3 {
    margin-bottom: 30px;
    color: #0d2c54;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    border: 1px solid #dee2e6;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
}

.form-control:focus {
    border-color: #4dabf7;
    box-shadow: none;
}

.btn-primary {
    background: #0d2c54;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #164584;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-wrapper {
        margin: 20px;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        margin: 15px;
        border-radius: 15px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        padding: 30px 20px;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .info-item i {
        font-size: 18px;
        margin-right: 10px;
    }

    .info-item p {
        font-size: 14px;
    }

    .social-links {
        margin-top: 15px;
        gap: 12px;
    }

    .social-links a {
        font-size: 18px;
    }

    .form-control {
        padding: 10px;
        font-size: 14px;
    }

    .btn-primary {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }

    .contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .contact-wrapper {
        margin: 10px;
        border-radius: 10px;
    }

    .contact-info,
    .contact-form {
        padding: 20px 15px;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 1.4rem;
    }

    .form-control {
        font-size: 13px;
    }

    .btn-primary {
        font-size: 15px;
    }
}


/* 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;
  }
}

/* Gallery Section */
        
.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(2,132, 199, 0.8) 0%, rgba(2, 132, 199, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.hover-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.hover-content h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.hover-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.view-btn {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .hover-overlay {
    opacity: 1;
    transform: scale(1);
}

.gallery-card:hover .hover-content {
    transform: translateY(0);
}

.view-btn:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .image-wrapper {
        padding-top: 66.67%; /* 3:2 Aspect Ratio for mobile */
    }
}

.navbar .dropdown-toggle::after{
    display: none !important;
}

textarea{
    resize:none;
}
.footer-links a {
    display: inline-block; /* or inline */
    margin: 0 5px; /* thoda gap left-right */
}

.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;
}