:root {
    --primary: #0284C7;
    --secondary: #0F172A;
    --accent: #22D3EE;
    --transition:0.3s all ease;
}

.logo{
    height:40px;
}
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav-link {
    font-weight: 600;
    position: relative;
    padding: 8px 12px !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}
.navbar .dropdown-toggle::after{
    display: none !important;
}

.nav-link.active {
  color: var(--primary) !important;
  border-bottom: 2px solid var(--primary);
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.btn-consulting {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-consulting:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(34, 211, 238, 0.2);
}

.hero-carousel .carousel-item {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s ease;
}

.carousel-item.active img {
    transform: scale(1.3);
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
    display: flex;
    align-items: center;
}

.carousel-content {
    position: relative;
    z-index: 2;
}

.carousel-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.2s;
}

.carousel-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.4s;
}

.carousel-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.6s;
}

.carousel-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.8s;
}

.carousel-item.active .carousel-subtitle,
.carousel-item.active .carousel-title,
.carousel-item.active .carousel-description,
.carousel-item.active .carousel-btn {
    opacity: 1;
    transform: translateY(0);
}

.carousel-indicators {
    margin-bottom: 40px;
}

.carousel-indicators button {
    width: 30px !important;
    height: 4px !important;
    border-radius: 2px !important;
    background-color: white !important;
    opacity: 0.5 !important;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    width: 40px !important;
    opacity: 1 !important;
    background: var(--accent) !important;
}

@media (max-width: 991px) {
    .carousel-title {
        font-size: 2.5rem;
    }
    .contact-info {
        display: none;
    }
}
/* feature section */
.feature-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	transition: all 0.4s ease;
	height: 100%;
	cursor: pointer;
	border: 1px solid #eee;
}

.icon-box {
	width: 60px;
	height: 60px;
	background: #e3f2fd;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: all 0.4s ease;
}

.icon-box i {
	font-size: 28px;
	color: #1976d2;
	transition: all 0.4s ease;
}

.feature-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	transition: all 0.4s ease;
}

.feature-card p {
	color: #6c757d;
	margin: 0;
	transition: all 0.4s ease;
}

/* Hover Effects */
.feature-card:hover {
	background: #1976d2;
	transform: translateY(-5px);
	border-color: #1976d2;
}

.feature-card:hover .icon-box {
	background: rgba(255, 255, 255, 0.2);
}

.feature-card:hover .icon-box i {
	color: white;
}

.feature-card:hover h3 {
	color: white;
}

.feature-card:hover p {
	color: rgba(255, 255, 255, 0.8);
}
		


/* blog section */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0dcaf0;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
}

.date-badge .day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.date-badge .month,
.date-badge .year {
    font-size: 0.8rem;
    display: block;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #0dcaf0;
}

.blog-text {
    color: #6c757d;
    margin-bottom: 20px;
}

.blog-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.blog-footer a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.blog-footer a:hover {
    color: #0dcaf0;
}

.blog-footer i {
    margin-right: 5px;
}

.read-more {
    margin-left: auto;
    font-weight: 500;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #f8f9fa;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.quote-icon i {
    font-size: 24px;
    color: #1976d2;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.author-info span {
    font-size: 0.9rem;
    color: #1976d2;
}

@media (max-width: 991px) {
    .testimonial-card {
        margin-bottom: 30px;
    }
}

/*Service-section */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.service-icon i{
    background:rgba(2, 132, 199, 0.2);
    color:rgba(2, 132, 199, 1);
    font-size:20px;
    width:50px;
    height:50px;
    border-radius:50%;
    padding:15px;
}
.service-icon img {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

/* footer section */
.bg-gradient-primary {
    background: linear-gradient(90deg, rgba(2, 132, 199, 0.5) 0%, rgba(2, 132, 199, 0.5) 100%);
}

footer a:hover {
    color: white !important;
}

.badge {
    padding: 8px 16px;
}

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 */
}

/* 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 a {
    transition: all 0.3s ease;
}

.team-section .social-links a:hover {
    color: #0d6efd !important;
}

@media (max-width: 768px) {
    .team-section .member-img {
        height: 250px;
        width: 170px;
    }
}



/* contact Section */
.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-card p{
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-control {
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.service-img{
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* 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;
  }
}

.text-custom{
    color:var(--primary);
}
textarea{
    resize:none;
}

/* 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 */
    }
}

.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;
    }
    .footer-section h6{
        font-size:20px;
        margin-top : 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;
}

.custom-text{
    color: rgba(255, 255, 255, 0.7);
}