
* {
    box-sizing: border-box;
}


/* GLOBAL */
body {
    margin: 0;
    font-family: "Noto Sans", sans-serif;
    background: #fff;
}




/* ================= NAVBAR ================= */
.navbar {
    width: 100%;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 9999;
}

.nav-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.nav-logo {
    width: 140px;
}

.hamburger-icon {
    width: 35px;
    cursor: pointer;
}

/* ================= SIDEBAR ================= */
.side-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -3px 0 15px rgba(0,0,0,0.2);
    transition: 0.4s ease;
    z-index: 99999;
}

.side-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.side-logo {
    width: 120px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.menu-list {
    list-style: none;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.menu-list li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;   /* underline remove */
    color: #808080;             /* text color set */
    font-size: 20px;
    font-weight: 600;
    gap: 12px;
}

.menu-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 20px;
    font-size: 25px;
    cursor: pointer;
}

.menu-list li img {
    width: 35px;
    padding-right: 15px;
}

.nav-logo,
.hamburger-icon {
    display: block;
    height: auto;
    max-width: none;
}


/* ================= HERO SECTION ================= */
.hero-section {
    margin-top: 10px;
    padding: 72px 0 40px;
    background: #fff;
    overflow-x: hidden; /* safety */
}

.hero-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

/* TOP IMAGE */
.top-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* TAGLINE IMAGE – FIXED */
.tagline-image img {
    max-width: 650px;   /* 👈 instead of width */
    width: 100%;
    height: auto;
    margin-top: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .tagline-image img {
        max-width: 285px;
        margin-top: 40px;
    }
}



/* ================= 3 COLUMN SECTION ================= */
.section-3col {
    padding: 80px 0;
    overflow-x: hidden; /* 🔒 VERY IMPORTANT */
}

.three-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr .7fr 1.1fr;
    gap: 40px;
    align-items: center;
}

/* TEXT */
.col1 h2 {
    font-size: 50px;
    color: #4b4b4b;
    margin-bottom: 10px;
}

.col1 p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b4b4b;
}

.btn-wrap {
    margin-top: 30px;
}

.btn-img {
    width: 150px;
    cursor: pointer;
    transition: 0.3s ease;
/*    height: 54px;*/
}

.btn-img:hover {
    transform: scale(1.07);
}

.col2 img,
.col3 img {
    width: 100%;
    border-radius: 12px;
}

/* 🔥 IMAGE FIX (IMPORTANT) */
.col2 img,
.col3 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* GIF EXTRA SAFETY */
.col3 {
    overflow: hidden;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
    .three-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .col1 p {
        text-align: center;
    }

    .col2 img,
    .col3 img {
/*        max-width: 280px; /* 👈 mobile friendly */*/
        margin: 0 auto;
    }

    .image-resize {
        max-width: 150px; /* 👈 mobile friendly */
        margin: 0 auto;
    }

    .section-3col {
    padding: 20px 0;
    
}
}





/* FOOTER */
.main-footer {
    width: 100%;
    background: #000;
    padding: 20px 0;
    font-family: "Noto Sans", sans-serif;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

/* Left Text */
.footer-left {
    font-size: 16px;
    font-weight: 600;
}


.footer-right {
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-right img {
  width: 35px;          /* yahin se size control karo */
  height: 35px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* hover animation (no color change) */
.footer-right a:hover img {
/*  transform: translateY(-4px) scale(1.05);*/
  opacity: 5;
}



/* Right Icons */
/*.footer-right a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 17%;
    margin-left: 15px;
    font-size: 18px;
    transition: 0.35s ease;
    text-decoration: none;
}*/

/* Hover Animation */
.footer-right a:hover {
    transform: translateY(-4px) scale(1.12);
    box-shadow: 0 0 10px #ffffffaa, 0 0 18px #ffffff88;
}

/* Responsive Footer */
@media(max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-right a {
        margin-left: 10px;
        font-size: 18px;
    }
}

/*@media (max-width: 576px) {
  .footer-right img {
    width: 22px;
    height: 22px;
  }
}*/




/* COntact page start here */

/* Contact Page */
body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans", sans-serif;
    background: #f4f4f4;
}

.contact-section,
.contact-section *{
    box-sizing: border-box;
}


.contact-section{
    margin-top: 100px;
    width: 100%;
    padding: 100px 0;
    background: #fff;
}

.contact-container{
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.contact-form{
    width: 100%;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px #0002;
    overflow: hidden;
}

.form-row{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input,
textarea{
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
}

.form-row input:focus,
textarea:focus{
    border-color: #000;
}

textarea{
    min-height: 150px;
    resize: none;
    margin-bottom: 20px;
}

/*.submit-btn{
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
    border:1px solid #000;
}*/

/*.submit-btn:hover{
    background: #333;
    transform: translateY(-3px);
    color: #fff;
}*/

.img-submit-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;

  display: inline-flex;        /* left aligned by default */
  justify-content: flex-start; /* ensure left align */
}

/* control button image width here */
.img-submit-btn img {
  width: 150px;     /* 👈 yahin se width control karo */
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.img-submit-btn:hover img {
  transform: translateY(-3px) scale(1.03);
}


/* Responsive */
@media(max-width: 768px){
    .form-row{
        flex-direction: column;
    }

    .contact-form{
        padding: 20px;
    }

    .submit-btn{
        width: 100%;
        justify-content: center;
    }
}









/*Testimonials page start here*/

body {
    margin: 0;
    font-family: "Noto Sans", sans-serif;
    background: #fff;
}

.testimonial-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 170px auto;
    text-align: left;
    position: relative;
    margin-top: 260px;
}

/* TEXT ANIMATION BASE */
.testimonial-slide {
    animation: fadeLeft 0.7s ease forwards;
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0px); }
}

/* PARAGRAPH */
.testimonial-msg {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
}

/* HEADING */
.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

/* BULLETS */
.bullets {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: gray;
    margin: 0 6px;
    cursor: pointer;
    transition: 0.3s;
}

.bullet.active {
    background: black;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .testimonial-msg {
        font-size: 17px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .testimonial-name {
        font-size: 18px;
        padding-left: 10px;
        padding-right: 10px;
    }
}



/*clint page start here*/



/* Section center aligned */
.client-section {
    width: 100%;
    padding: 255px 0 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff !important;
}

/* Slider wrapper */
.slider {
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
}

/* Track (infinite slide) */
.slide-track {
    display: flex;
    width: calc(250px * 12); /* 12 slides = 6 original + 6 duplicate */
    animation: scroll 22s linear infinite;
}

/* Each slide */
.slide {
    width: 250px;
    height: 180px;           /* All logos same height */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #ffffff !important;
}

.slide img {
    height: 100%;            /* Fixed height */
    width: auto;             /* Width automatic */
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s ease;
    background: #ffffff !important;
}

/* Hover effect */
.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* Animation for infinite scrolling */
@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); }
}

/* Responsive */
@media(max-width: 600px) {
    .slide {
        width: 160px;
        height: 90px;
    }
}





/* work page start here */

.work-section {
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    margin-top: 180px;
}

.work-center {
    position: relative;
    width: 650px;
    height: 650px;
}

/* MAIN IMAGE */
.main-img {
    position: absolute;
    width: 340px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* COMMON STYLE FOR SMALL IMAGES */
.img-item {
    position: absolute;
    width: 160px;
    opacity: 0;
    transition: 0.8s ease;
}

/* POSITIONS EXACT LIKE YOUR REFERENCE IMAGE */
.top-img {
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
}

.left-top-img {
    top: 10%;
    left: 24px;
}

.left-bottom-img {
    top: 32%;
    left: -28px;
}

.right-top-img {
    top: 10%;
    right: 17px;
}

.right-bottom-img {
    top: 32%;
    right: -28px;
}

/* ANIMATIONS */
.animate-top {
    animation: slideTop 1s ease forwards;
}

.animate-left {
    animation: slideLeft 1s ease forwards;
}

.animate-right {
    animation: slideRight 1s ease forwards;
}

@keyframes slideTop {
    from { opacity: 0; transform: translate(-50%, -50px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes slideLeft {
    from { opacity: 0; transform: translate(-50px, 0); }
    to   { opacity: 1; transform: translate(0, 0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translate(50px, 0); }
    to   { opacity: 1; transform: translate(0, 0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .work-center {
        width: 350px;
        height: 450px;
    }

    .main-img {
        width: 160px;
    }

    .img-item {
        width: 80px;
    }

    .left-bottom-img {
    top: 37%;
    left: 2px;
    }

    .right-bottom-img {
    top: 37%;
    right: 3px;
}
    .top-img { top: 45px; }
    .left-top-img { top: 21%; }
    .right-top-img { top: 21%; right:29px }
}



/* Service page start here */

/* ============ MAIN WRAPPER ============ */
.service-slider {
    width: 100%;
    max-width: 780px;
    margin: 240px auto;
    position: relative;
    overflow: hidden;
}

/* ============ TRACK ============ */
.service-slider-track {
    display: flex;
    transition: transform 0.7s ease;
}

/* ============ EACH SLIDE ============ */
.service-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
}

/* ============ SLIDE INNER CONTENT ============ */
.service-slide-inner {
    width: 100%;
    padding: 40px 25px;
    background: #fff;
    border-radius: 10px;
    text-align: left; /* LEFT ALIGN */
    transition: background 0.3s;
}

/* HOVER EFFECT */
.service-slide-inner:hover {
    background: #f4f4f4;
}

.srv-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
}

.srv-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px;
    color: #666;
}

.srv-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    max-width: 520px;
}

/* ============ DOTS ============ */
.service-dots {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.service-dot {
    width: 11px;
    height: 11px;
    background: #cfcfcf;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.service-dot.active {
    background: #000;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 600px) {
    .srv-title { font-size: 26px; }
    .srv-subtitle { font-size: 18px; }
    .srv-desc { font-size: 15px; }
    .service-slide-inner { padding: 30px 18px; }
}


/* Smooth hover effect for all small images */
.img-item {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.img-item:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}




/*..........................................*/

html, body {
    overflow-x: visible !important;
}

/* BACK BUTTON */
.oz-back-image{
    position: absolute !important;
    top: 150px;                 /* header ke niche */
    right: 0px;               /* bahar se nikla */
/*    z-index: 999999 !important;*/
    pointer-events: auto;
}

/* IMAGE */
.oz-back-image img{
    width: 375px;
    height: auto;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none;
    transition: transform 0.3s ease;
}

/* HOVER */
.oz-back-image:hover img{
    transform: translateX(-20px);
}

/* =====================
   RESPONSIVE
===================== */

/* Large tablets */
@media (max-width: 1200px){
    .oz-back-image{
        top: 250px;
    }
    .oz-back-image img{
        width: 55px;
    }
}

/* Tablets */
@media (max-width: 992px){
    .oz-back-image{
        top: 130px;
    }
    .oz-back-image img{
        width: 300px;
    }
}

/* Mobile */
@media (max-width: 768px){
    .oz-back-image{
        top: 150px;
        right: -4px;
    }
    .oz-back-image img{
/*        padding-top: 100px;*/
        width: 300px;
    }
}

/* Small Mobile */
@media (max-width: 480px){
    .oz-back-image{
        top: 80px;
        right: -2px;
    }
    .oz-back-image img{
        padding-top: 60px;
        width: 190px;
    }
}



/*..............................*/

/*.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    background: #5a5a5a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}*/

/* Show button */
/*.scroll-top.show {
    opacity: 1;
    visibility: visible;
}*/

/* Hover effect */
/*.scroll-top:hover {
    background: #444;
    transform: translateY(-4px);
}*/



.scroll-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 999;
  display: none;              /* JS se show/hide */
  cursor: pointer;
}

.scroll-top img {
  width: 55px;                /* yahin se size control */
  height: auto;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* hover animation (no bg, no color) */
.scroll-top:hover img {
  transform: translateY(-6px) scale(1.05);
  opacity: 0.9;
}
.scroll-top {
  display: block !important;
}

@media (max-width: 576px) {
  .scroll-top img {
    width: 34px;
  }
}










/*...........................................*/

/* SECTION */
.services-section {
    position: relative;
    overflow: hidden;
}

/* DESKTOP FLOAT IMAGE */
.left-float-image {
    position: absolute;
    left: -180px;
    top: 90%;
    transform: translateY(-50%);
    z-index: 0;

}

.left-float-image img {
    width: 1060px;
    max-width: none;
    opacity: 0.95;
}

.left-float-image:hover img {
    animation: softShake 0.5s linear;
}

@keyframes softShake {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
    100% { transform: translate(0); }
}


/* CONTENT ABOVE IMAGE */
.services-section .three-container {
    position: relative;
    z-index: 2;
}

/* ===================== */
/* MOBILE VIEW FIX */
/* ===================== */
@media (max-width: 992px) {

    .services-section {
        padding-bottom: 75px;   /* 🔑 image ke liye space */
    }

    .left-float-image {
        position: absolute;      /* 🔑 DOM order ignore */
        left: 0%;
        bottom: 0;               /* 🔑 section ke bottom */
        top: auto;
        transform: translateX(-50%);
        display: block;
        z-index: 1;
        margin-bottom: 15px;
    }

    .left-float-image img {
/*        width: 100%;*/
        max-width: 600px;
        opacity: 1;
    }
}







.left-float-image img {
  opacity: 0;
  transform: translateX(-60px);
  animation: fadeInLeft 1.2s ease forwards;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}





/* Container */
.oz-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; /* button ke liye reference */
}

/* Top Right Button Wrapper */
.oz-section-top {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 150px;
    margin-left: 10px;
}

/* Back Button Style */
.oz-back-link {
    padding: 10px 22px;
    background: #808080;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 0.8s forwards; /* load animation */
    display: inline-block;
}

/* Hover In-Out Effect */
.oz-back-link:hover {
    background: #333;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


