     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Header Styles */
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            height: 200vh; /* Added to enable scrolling */
        }
        
       /* Header Base Styling */
#mainHeader {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 999;
padding: 20px 0;
transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
background: rgba(0,0,0,0.2); /* initial transparent dark look */
backdrop-filter: blur(6px);
}


/* Header on Scroll */
#mainHeader.scrolled {
background: rgba(255,255,255,0.9);
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
padding: 10px 0;
}


/* NAVBAR */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
}


.logo-img {
height: 60px;
transition: height 0.3s ease;
}


#mainHeader.scrolled .logo-img {
height: 48px;
}


/* NAVIGATION */
.nav-links {
list-style: none;
display: flex;
gap: 35px;
align-items: center;
}


.nav-links li a {
text-decoration: none;
color: white;
font-weight: 600;
letter-spacing: 1px;
transition: color 0.3s ease;
}


#mainHeader.scrolled .nav-links li a {
color: black;
}


/* CTA BUTTON */
.cta-button { 
        /* Responsive Styles */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
                margin-left: 0;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .cta-button {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .logo-img {
                height: 35px;
            }
            
            header {
                top: 15px;
            }
        }
    }

        /* Video Background Hero Section */
        .video-hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }
        
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .video-background video {
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 46, 0.7);
            z-index: -1;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 1;
        }
        
        .hero-content h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-content h2 span {
            color: #ff6b35;
        }
        
        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #e0e0e0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background-color: #ff6b35;
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #e55a2b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 14px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background-color: white;
            color: #1a1a2e;
            transform: translateY(-3px);
        }
        
        /* Stats Section */
        .stats {
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 150px;
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #ff6b35;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 16px;
            color: #e0e0e0;
        }
        
        /* Video Controls */
        .video-controls {
            position: absolute;
            bottom: 30px;
            right: 30px;
            z-index: 10;
        }
        
        .video-control-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }
        
        .video-control-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content h2 {
                font-size: 40px;
            }
            
            .stats {
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .hero-content h2 {
                font-size: 32px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 250px;
            }
            
            .video-controls {
                bottom: 20px;
                right: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .stats {
                flex-direction: column;
                gap: 25px;
            }
            
            .hero-content h2 {
                font-size: 28px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
        }
        
        /* Fallback for browsers that don't support video autoplay */
        .video-fallback {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            z-index: -2;
        }
        
        .no-video .video-background {
            display: none;
        }
        
        .no-video .video-fallback {
            display: block;
        }

        .my-change{
    padding-left: 350px;
    padding-top: 120px;
    height: 450px;
    width: auto;
}
/* 
 2 section  */

   .section-header {
            margin-bottom: 80px;
        }
        
        .section-header h1 {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 30px;
            color: #1a1a2e;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-header p {
            font-size: 18px;
            color: #555;
            max-width: 800px;
            line-height: 1.7;
            margin-left: auto;
            margin-right: auto;
        }
        
        .divider {
            height: 1px;
            background-color: #e0e0e0;
            margin: 60px 0;
        }
        
        .services-grid {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }
        
        .service-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 250px;
            text-align: center;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ff6b35, #ff8e53);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }
        
        .service-icon i {
            font-size: 32px;
            color: white;
        }
        
        .service-content h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a2e;
        }
        
        .service-content p {
            font-size: 16px;
            color: #555;
            line-height: 1.7;
        }
        
        /* Hover effects */
        .service-item:hover .service-icon {
            transform: translateY(-5px) scale(1.05);
            transition: transform 0.3s ease;
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
            background-color: red;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .section-header h1 {
                font-size: 36px;
            }
            
            .services-grid {
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .services-grid {
                gap: 30px;
            }
            
            .section-header h1 {
                font-size: 32px;
            }
            
            .service-item {
                max-width: 220px;
            }
            
            .service-icon {
                width: 70px;
                height: 70px;
            }
            
            .service-icon i {
                font-size: 28px;
            }
        }
        
        @media (max-width: 576px) {
            .services-section {
                padding: 60px 0;
            }
            
            .section-header {
                margin-bottom: 60px;
            }
            
            .section-header h1 {
                font-size: 28px;
            }
            
            .services-grid {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }
            
            .service-item {
                max-width: 100%;
            }
        }

 /* 2 section end */

 .client-experience {
  padding: 80px 0;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-image: url(images/3.jpg);
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  position: relative;
}

/* Optional overlay for better text readability */
.client-experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.intro-text {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #222;
}

.content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.content p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .client-experience {
    padding: 60px 0;
  }
  
  .intro-text {
    font-size: 1.3rem;
  }
  
  .content p {
    font-size: 1rem;
  }
}

.website-design-section {
  padding: 60px 0;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #222;
}

.description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.buttons-container {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.action-btn {
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.action-btn:hover {
  background-color: #555;
}

.divider {
  height: 1px;
  background-color: #ddd;
  margin: 30px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.item-list {
  list-style-type: none;
  padding: 0;
}

.item-list li {
  padding: 8px 0;
  font-size: 1rem;
  position: relative;
  padding-left: 15px;
}

.item-list li:before {
  content: "-";
  position: absolute;
  left: 0;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .buttons-container {
    justify-content: center;
  }
  
  .main-title {
    font-size: 1.7rem;
  }
  
  .subtitle {
    font-size: 1.2rem;
  }
}









































/* Mega menu container */
.mega-dropdown {
    position: relative;
}

.mega-dropdown a {
    text-decoration: none;
}

/* Dropdown panel */
.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 1000px;           /* adjust to your layout */
    background: black;
    padding: 30px;
    padding-right: 400px;
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 999;
}

/* Show dropdown on hover */
.mega-dropdown:hover .mega-menu {
    display: grid;
}

/* Column titles */
.mega-column h3 {
    margin-bottom: 15px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #444;
    font-weight: 600;
}

/* Links */
.mega-column a {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: black;
    text-decoration: none;
    background-color: white;
}

.mega-column a:hover {
    color: #000;
}









































 /* Section Wrapper */
    .video-section {
        background: black;
        color: white;
        padding: 120px 60px;
        min-height: 100vh;
        transition: background 0.5s ease;
    }

    .section-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-align: center;
    }

    .section-subtext {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px auto;
        font-size: 1.1rem;
        opacity: 0.8;
    }

    /* Grid */
    .video-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* Video Card */
    .video-card {
        position: relative;
        background: #111;
        border-radius: 20px;
        overflow: hidden;
        height: 320px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .video-card:hover {
        transform: scale(1.03);
    }

    .video-card video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Hover Details */
    .video-details {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background: linear-gradient(transparent, rgba(0,0,0,0.9));
        color: white;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .video-card:hover .video-details {
        opacity: 1;
        transform: translateY(0);
    }

    .video-details h3 {
        margin: 0 0 8px 0;
        font-size: 1.4rem;
        font-weight: 700;
    }

    .video-details p {
        margin: 0;
        opacity: 0.8;
        font-size: 0.9rem;
    }
        










    .services-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.section-title {
    font-size: 32px;
    margin-bottom: 60px;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: left;
}

.service-item {
    padding: 10px;
}

.icon {
    font-size: 40px;
    opacity: 0.6;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    line-height: 1.6;
    opacity: 0.75;
    margin-bottom: 15px;
}

.service-link {
    color: #e54f85;
    text-decoration: none;
    font-weight: 500;
}

.service-link:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
}




















body {
    margin: 0;
    padding: 0;
    font-family: "Georgia", serif;
    background: #ffffff;
    color: #333;
}

.main-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 70px 120px;
}

.left-section {
    width: 40%;
}

.right-section {
    width: 50%;
}

.tagline, .small-heading {
    font-size: 12px;
    letter-spacing: 2px;
    color: #999;
}

.title, .title-right {
    font-size: 48px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 30px;
}

.company-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.company-info p {
    margin: 4px 0;
}

.rating {
    margin-top: 10px;
    color: #ff4da6;
    font-size: 14px;
}

.next-steps .subtitle {
    margin-top: 40px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #555;
}

.next-steps a {
    color: #ff4da6;
    text-decoration: none;
}

.cta-btn {
    margin-top: 40px;
    padding: 18px 45px;
    border: none;
    background: #ff4da6;
    color: white;
    font-size: 16px;
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(255, 77, 166, 0.4);
    cursor: pointer;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #ff2d8f;
}

.description {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 20px;
}

.why-title {
    margin-top: 50px;
    font-size: 22px;
    font-weight: bold;
}

.highlight {
    color: #ff4da6;
    text-decoration: none;
}







/* Left Side */
/* .left {
width: 30%;
background: #111827;
color: white;
display: flex;
justify-content: center;
align-items: center;
font-size: 2.5rem;
font-weight: bold;
text-align: center;
padding: 20px;
} */


/* Right Side */
.right {
/* width: 70%; */
padding: 40px;
overflow-y: auto;
padding-left: 500px;
}


.faq-container {
max-width: 700px;
}


.faq-item {
background: white;
margin-bottom: 15px;
border-radius: 8px;
padding: 20px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
cursor: pointer;
transition: 0.3s;
}


.faq-item:hover {
transform: translateY(-3px);
}


.faq-question {
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 10px;
}


.faq-answer {
display: none;
font-size: 1rem;
color: #333;
line-height: 1.5rem;
}





  .agency-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
  }

  .agency-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
  }

   .agency-content {
    position: relative;
    max-width: 800px;
    padding: 20px;
  } 

  .agency-title {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .agency-text {
    font-size: 1.2rem;
    line-height: 1.6rem;
    margin-bottom: 30px;
  }

  .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
  }

  .btn {
    padding: 14px 35px;
    border-radius: 30px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
  }

  .btn:hover {
    background: white;
    color: black;
  }

  .btn-pink {
    background: #ff3c93;
    border: none;
  }

  .btn-pink:hover {
    opacity: 0.8;
  }

  .bottom-text {
    font-size: 1.1rem;
    margin-top: 15px;
    font-style: italic;
  } 










  .rr-testimonials {
  text-align: center;
  padding: 80px 20px;
  font-family: "Helvetica Neue", sans-serif;
}

.rr-quote {
  font-size: 28px;
  font-weight: 300;
  color: #111;
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.5;
}

.rr-author {
  font-size: 18px;
  color: #555;
}

.rr-company {
  color: #e84393;  /* pink accent like image */
}

.rr-slider {
  position: relative;
  min-height: 160px;
}

.rr-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease;
  position: absolute;
  left: 0;
  right: 0;
}

.rr-slide.active {
  display: block;
  opacity: 1;
}

.rr-dots {
  margin-top: 30px;
}

.rr-dot {
  height: 10px;
  width: 10px;
  display: inline-block;
  margin: 0 4px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.rr-dot.active {
  background: #111;
}




.rr-location {
  width: 100%;
  padding: 120px 20px;
  text-align: center;
  color: white;
  background: linear-gradient(180deg, #6b1fa9, #cc6a4d);
  position: relative;
  overflow: hidden;
}

.rr-content {
  max-width: 900px;
  margin: auto;
}

.rr-location h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
}

.rr-description {
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-size: 16px;
  opacity: 0.9;
}

/* Map circle */
.rr-map-container {
  width: 340px;
  height: 340px;
  margin: 40px auto;
  border-radius: 50%;
  overflow: hidden;
}

.rr-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* Office info */
.rr-logo {
  width: 150px;
  margin-bottom: 15px;
}

.rr-office h3 {
  margin-top: 0;
  font-size: 20px;
}

.rr-office p {
  font-size: 15px;
  line-height: 1.6;
  margin-top: 5px;
  opacity: 0.9;
}

/* Background Section */
.rr-contact {
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(180deg, #b06060, #c87957);
  color: white;
}

/* Container */
.rr-contact-container {
  max-width: 900px;
  margin: auto;
}

/* Top row: text + button */
.rr-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.rr-top h2 {
  font-size: 32px;
  font-weight: 300;
}

/* Pink button */
.rr-btn {
  background: #ff55a8;
  padding: 14px 35px;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.rr-btn:hover {
  opacity: 0.85;
}

/* Social icons */
.rr-social {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.rr-circle {
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 32px;
  transition: 0.3s;
}

.rr-circle:hover {
  border-color: white;
  color: white;
  transform: scale(1.08);
}
