:root {
    --primary: #ff6b6b;
    --secondary: #4ecdc4;
    --dark: #292f36;
    --light: #f7f7f7;
    --accent: #ffd166;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

.section-title {
    margin-bottom: 60px;
}
.padding{
    padding:100px 30px;
}
.section-title h6 {
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 70px;
    height: 4px;
    background: var(--primary);
}

.section-title.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

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

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.8rem;
}

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

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

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

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

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

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

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: #fff;
}

.hero-img {
    position: relative;
}

.hero-img img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
    border-radius: 20px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.stats-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: absolute;
    width: 150px;
}

.stats-card.top {
    top: 20%;
    right: -30px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.stats-card.bottom {
    bottom: 20%;
    left: -30px;
    animation: float 3s ease-in-out infinite 1s;
}

.stats-card h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.stats-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #777;
}

/* About Section */
.about-section {
    background-color: #fff;
}

.about-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img:before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--accent);
    z-index: -1;
}

.about-img:after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--secondary);
    z-index: -1;
}

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

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 30px;
    color: #666;
}

/* Features Section */
.features-section {
    background-color: var(--light);
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0;
}

.feature-card:hover:before {
    height: 100%;
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover h3,
.feature-card:hover p {
    color: #fff;
}

.feature-card:hover .icon-box {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 107, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.icon-box i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-card p {
    margin-bottom: 0;
    color: #666;
    transition: all 0.3s ease;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
    color: #fff;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

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

.service-card p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.service-link {
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent);
}

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

.team-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

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

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

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

.team-social {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 107, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--dark);
    color: #fff;
}

.team-info {
    padding: 25px 20px;
    text-align: center;
    background: #fff;
}

.team-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-info p {
    color: #666;
    margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--light);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height:40vh;
    object-fit:cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9) 0%, rgba(78, 205, 196, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

.gallery-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Parallax Section */
.parallax-section {
    position: relative;
    padding: 150px 0;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41, 47, 54, 0.6) 0%, rgba(26, 26, 46, 0.6) 100%);
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.parallax-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.parallax-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.btn-light {
    background: #fff;
    color: var(--dark);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--primary);
    color: #fff;
}

/* Portfolio Section */
.portfolio-section {
    background-color: #fff;
}

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

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9) 0%, rgba(78, 205, 196, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

.portfolio-info {
    text-align: center;
    color: #fff;
    padding: 0 20px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    opacity: 0;
}

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

.portfolio-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.portfolio-info p {
    margin-bottom: 20px;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: var(--dark);
    color: #fff;
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--light);
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    padding: 40px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 5px solid var(--primary);
}

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
}

.testimonial-author h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #999;
    margin-bottom: 0;
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 15px;
}

/* Social Media Section */
.social-media-section {
    background-color: #fff;
}

.social-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.social-item img {
    width: 100%;
    height:40vh;
    object-fit:cover;
    transition: all 0.5s ease;
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9) 0%, rgba(78, 205, 196, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

.social-icon {
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
    transform: scale(0);
}

.social-item:hover .social-icon {
    transform: scale(1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--dark);
    color: #fff;
}

/* Footer */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 80px 0 0;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand span {
    color: var(--primary);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

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

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

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 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-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    width: 30px;
    font-size: 1.2rem;
    color: var(--primary);
    margin-right: 10px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark);
}

/* Responsive */
@media (max-width: 991px) {

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .about-img:before,
    .about-img:after {
        display: none;
    }
    
    .stats-card {
        position: static;
        margin: 20px auto;
    }
    
    .parallax-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        height: auto;
        padding: 100px 0;
    }
    
    .hero-img {
        margin-top: 50px;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .parallax-content h2 {
        font-size: 2rem;
    }
    
    .testimonial-content {
        padding: 30px;
    }
}

.logo{
    height:40px;
}

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

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

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

.content-block {
  padding: 4rem 2rem;
  overflow-y: auto;
  max-height: 100vh;
}

/* Mobile responsive */

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

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

  .image-block img {
    height: auto;
  }

  .content-block {
    max-height: none;
    overflow-y: visible;
  }
}

pre {
    font-family:inherit;
    overflow-x: auto; 
    white-space: pre-wrap; 
    line-height: 1.5; 
    font-size: 16px; 
    margin-bottom: 20px; 
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;  
    white-space: -pre-wrap;      
    white-space: -o-pre-wrap;    
    word-wrap: break-word; 
}
img{
    object-fit:cover;    
}
textarea{
    resize:none;
}
.padding{
    padding:120px 30px;
}
.navbar-custom {
  background-color: transparent;
  transition: background-color 0.3s ease;
}

/* Mobile size navbar open hone par white background */
@media (max-width: 991.98px) {
  .navbar-custom {
    background-color: transparent;
  }

  .navbar-custom.show-bg {
    background-color: #fff;
  }
}
/* Override for iOS */
.parallax-ios-fix {
    background-attachment: scroll !important;
}
body {
  overflow-wrap: break-word;  
  word-wrap: break-word;      
  word-break: break-word;     
  white-space: normal;        
}