*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}
body{
    background:#0a2a43;
    color:#333;
    overflow-x: hidden;
}
a{
  text-decoration:none
}

/* ================= NAVBAR ================= */
.navbar{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    background:rgba(10,42,67,0.95);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:22px;
    font-weight:bold;
    margin-left: 5px;
}
.logo img{
    height:60px;
}
.logo span{
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:25px;
}

.nav-links li{
  position:relative;
}

.nav-links a{
    color:#fff;
    font-size:15px;
    padding:8px 10px;
    display:flex;
    align-items:center;
    gap:6px;
    position: relative;
    transition: all 0.3s ease;
     font-weight: bold;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #00c2ff;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-links a:hover {
    transform: translateY(-2px);
    color: #00c2ff;
}

/* Dropdown menu */
.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  background:#0a2a43;
  min-width:150px;
  border-radius:8px;
  padding:10px 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.3s;
  box-shadow:0 10px 25px rgba(0,0,0,.4);
  z-index:999;
  list-style: none;
  margin: 0;
}

.dropdown-menu li{
    width: 100%;
}

.dropdown-menu li a{
  padding:10px 18px;
  display:block;
  font-size:14px;
  color:#fff;
}

.dropdown-menu li a:hover{
  background:#00c2ff;
  color:#000;
}

.dropdown-menu li a:hover::after{
    display: none;
}

/* Hover open */
.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.social{
margin-left:-10px;
}

.social a{
padding:6px 6px;
}
.nav-links .social a {
    border: 2px solid transparent;
    border-radius: 50%;
    padding: 8px;
    transition: all 0.3s ease;
}
.nav-links .social a:hover {
    border-color: #00c2ff;
    transform: rotate(10deg) scale(1.1);
}
.nav-links li.dropdown a i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-links li.dropdown:hover a i {
    transform: rotate(180deg);
    color: #00c2ff;
}

/* ================= MOBILE STYLES ================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 3px;
}
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 180px; 
        height: 100vh; 
        background: #0a2a43;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 20px 30px; 
        gap: 15px;
        transition: left 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        box-shadow: 5px 0 20px rgba(0,0,0,0.3);
    }

    .nav-links.open {
        left: 0;
    }

 
    .nav-links li {
        width: 100%;
        display: flex;
    flex-direction: column;
    }

    .nav-links li a {
        width: 100%;
        padding: 12px 15px;
        font-size: 16px;
    }

    .nav-links li a::after {
        display: none;
    }

    /* Dropdown styles for mobile */
    .nav-links li.dropdown {
        position: relative;
    }

    .nav-links li.dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-links li.dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        padding-left: 20px;
        background: rgba(0,0,0,0.2);
        border-radius: 5px;
        box-shadow: none;
        margin-top: 5px;
    }

    .nav-links li.dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-links li.dropdown .dropdown-menu li a {
        padding: 10px 15px;
        font-size: 15px;
    }

    .nav-links li.social {
        display: inline-flex !important;
        width: auto !important;
        margin: 0 !important;
    }

    .nav-links li.social a:hover {
        border-color: #00c2ff;
        transform: scale(1.1);
    }
.nav-links .social-icons-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}
.nav-links li.social a {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 50%;
        padding: 0;
        background: transparent;
    }

    .nav-links li.social a i {
        font-size: 16px;
        color: #fff;
    }

    .nav-links li.social a:hover {
        border-color: #00c2ff;
        transform: scale(1.1);
        background: rgba(0,194,255,0.1);
    }

    /* Hamburger animation */
    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}
/* ===== MOBILE SIDEBAR SOCIAL ICONS ===== */
@media (max-width: 768px) {
    
    .nav-links li.desktop-social {
        display: none !important;
    }
    
    .nav-links .mobile-social-icons-container {
        display: block !important;
        width: 100% !important;
        list-style: none !important;
        margin-top: 10px !important;  
        padding: 0 !important;
    }
    
    .mobile-social-icons {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;  
        padding: 10px 0 !important;  
        
        width: 100% !important;
    }
    
    .social-icon-mobile {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important; 
        height: 40px !important;  
        background: rgba(255, 255, 255, 0.15) !important;
        border-radius: 50% !important;
        color: #fff !important;
        font-size: 18px !important;  
        transition: all 0.3s ease !important;
        text-decoration: none !important;
    }
    
    .social-icon-mobile:hover {
        background: #00c2ff !important;
        transform: scale(1.1) !important;
    }
}


@media (min-width: 769px) {
    
    .nav-links .mobile-social-icons-container {
        display: none !important;
    }
    
    
    .nav-links li.desktop-social {
        display: inline-flex !important;
    }
}

/* ===== SHOW LOGO IN MOBILE SIDEBAR ===== */
@media (max-width: 768px) {
    .nav-links .mobile-logo {
        display: block !important;
        text-align: center;
         padding: 10px 0; 
         margin-top: 0 0 15px 0;    
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        list-style: none;
    }
    
    .nav-links .mobile-logo img {
        height: 40px;           
        width: auto;
        filter: brightness(0) invert(1);
        display: block;
        margin: 0 auto;
    }
    
    
    .nav-links {
        padding-top: 30px !important;  
    }
}

/* Desktop  mobile-logo hide */
@media (min-width: 769px) {
    .nav-links .mobile-logo {
        display: none !important;
    }
}
/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 0px;
}
.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  z-index:1;
  transition:opacity 1.5s ease-in-out;
}

/* overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* content */
.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 80px;
  max-width: 650px;
}

.hero h1{
    font-size:42px;
    margin-bottom:10px;
    
}
.hero p{
    font-size:18px;
    margin-bottom:25px;
}
.btn{
    display:inline-block;
    width:fit-content;
    padding:12px 30px;
    background:#00c2ff;
    color:#000;
    font-weight:bold;
    border-radius:30px;
}
/* ================= second section ================= */
.about-intro{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:50px;
  padding:80px 8%;
  align-items:center;
  background:#f7f9fb;
}

/* LEFT SLIDER */
.about-slider{
  position:relative;
  height:420px;
  border-radius:14px;
  overflow:hidden;
}

.about-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform: translateX(-100%);  
  opacity:0;
  transition: all 0.8s ease;
}

.about-slide.active{
  transform: translateX(0);       
  opacity:1;
}

/* RIGHT CONTENT */
.about-content h3{
  font-size:34px;
  color:#0a2a43;
  margin-bottom:20px;
}

.about-content p{
  font-size:15px;
  line-height:1.9;
  margin-bottom:15px;
  color:#444;
}

.about-content .btn{
  margin-top:15px;
}

/* Responsive */
@media(max-width:900px){
  .about-intro{
    grid-template-columns:1fr;
  }
  .about-slider{
    height:300px;
  }
}
/* ========================================
   ABOUT CONTENT - MINIMAL HOVER
   ======================================== */

.about-content h3 {
    font-size: 34px;
    color: #0a2a43;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.about-content h3:hover {
    color: #0056b3;
}

.about-content p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 15px;
    color: #444;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.about-content p:hover {
    color: #0a2a43;
    padding-left: 10px;
}
/* WHY CHOOSE US HEADING */
.section-title{
  text-align:center;
  width:100%;
  font-size:38px;
  font-weight:600;
  color:#0a2a43;
  margin-top:0px;
  margin-bottom: 0px;
  background-color: white;
  letter-spacing:1px;
}
/* ================= SPECIALITIES ================= */
.main-heading{
  font-size:32px;
  margin:10px 0 15px;
  line-height:1.3;
}

.why-points{
  list-style:none;
  padding:0;
  margin:20px 0 25px;
}

.why-points li{
  margin-bottom:10px;
  font-size:16px;
  color:#222;
}

.section{
    padding:30px 60px;
    background:#0a2a43;
    text-align:center;
    color:#fff;
}
.section h2{
    margin-bottom:40px;
    letter-spacing:1px;
}
.special-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}
.spec-card{
    background:#123c5c;
    border-radius:12px;
    overflow:hidden;
    transition:.4s;
}
.spec-card img{
    width:100%;
    height:150px;
    object-fit:cover;
}
.spec-card h3{
    padding:15px;
    font-size:16px;
}
.spec-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 25px rgba(0,0,0,0.4);
}
.services-section{
  display:flex;
  padding:60px;
  gap:40px;
  align-items:center;
}
/* LEFT */
.services-left{
  flex:1;
  
}
.small-title{
  color:#1c355e;
  margin-bottom:15px;
  text-align: center;
  
}
.main-text{
  font-size:22px;
  color:#1c355e;
  line-height:1.6;
  margin-bottom:25px;
  
}

.btn{
  background:rgba(10,42,67,0.95);
  border:none;
  padding:14px 30px;
  color:#fff;
  border-radius:30px;
  cursor:pointer;
  font-size:16px;
  transition:.3s;
}

.btn:hover{
  transform:scale(1.05);
}

/* RIGHT */
.services-right {
  flex: 1;
}

.services-right h3 {
  text-align: center;
  margin-bottom: 15px;
  color: #1c355e;
}

.image-box {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.image-box img {
  width: 100%;
  display: block;
  transition: transform .6s ease;
     border-radius: 30px 30px 0 0; 
}

.image-box:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 42, 67, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-box:hover .overlay {
  opacity: 1;
}

.overlay span {
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.image-box:hover .overlay span {
  transform: translateY(0);
}

.overlay-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #00c2ff;
  color: #0a2a43;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #00c2ff;
  transform: translateY(20px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.image-box:hover .overlay-btn {
  transform: translateY(0);
}

.overlay-btn:hover {
  background: transparent;
  color: #00c2ff;
}

.section{
    padding:20px 20px;
    background:#f3f4f5;
    text-align:center;
    color:#000;
}

.section h2{
    font-size:36px;
    margin-bottom:50px;
    letter-spacing:2px;
}

.section h2::after{
    content:"";
    width:60px;
    height:3px;
    background:#00c6ff;
    display:block;
    margin:15px auto 0;
    border-radius:2px;
}

/* Horizontal scroll container */
.special-scroll{
    overflow:hidden;
    position:relative;
    padding:20px 0;
}

/* Track that moves */
.special-track{
    display:flex;
    gap:25px;
    animation:scroll 20s linear infinite;
}

/* Pause animation on hover */
.special-scroll:hover .special-track {
    animation-play-state: paused;
}

/* Individual cards - UPDATED WITH HOVER EFFECTS */
.spec-card{
    min-width:250px;
    background: linear-gradient(145deg, #ffffff, #f0f5fa);
    padding:25px 20px;
    border-radius:20px;
    color:#fff;
    text-align:center;
    flex-shrink:0;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 194, 255, 0.1);
    cursor: pointer;
}

/* Add shine effect */
.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.spec-card:hover::before {
    left: 100%;
}

/* Add border gradient effect */
.spec-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, #00c2ff, #0a2a43, #00c2ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.spec-card:hover::after {
    opacity: 1;
}

.spec-card h3{
    font-size:20px;
    margin-bottom:5px;
    color:#03032d;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.spec-card p{
    font-size:14px;
    line-height:1.4;
    color:#1949a1;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* MAIN HOVER EFFECTS */
.spec-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 35px rgba(0, 194, 255, 0.3);
    background: linear-gradient(145deg, #ffffff, #e6f3ff);
}

.spec-card:hover h3 {
    color: #00c2ff;
    transform: translateY(-3px);
    text-shadow: 0 2px 10px rgba(0, 194, 255, 0.3);
}

.spec-card:hover p {
    color: #0a2a43;
    transform: translateY(-2px);
}

/* Image inside card - WITH HOVER EFFECT */
.spec-img{
    width:100%;
    height:150px; 
    object-fit:cover;
    border-radius:15px;
    margin-bottom:15px;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.spec-card:hover .spec-img {
    transform: scale(1.08) rotate(1deg);
    box-shadow: 0 15px 30px rgba(0, 194, 255, 0.4);
}

/* Add a floating animation to cards on hover */
@keyframes float {
    0%, 100% { transform: translateY(-12px) scale(1.02); }
    50% { transform: translateY(-15px) scale(1.03); }
}

.spec-card:hover {
    animation: float 3s ease-in-out infinite;
}

/* Add corner accent on hover */
.spec-card .corner-accent {
    position: absolute;
    width: 30px;
    height: 30px;
    border-top: 3px solid #00c2ff;
    border-left: 3px solid #00c2ff;
    top: 10px;
    left: 10px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.spec-card .corner-accent-bottom {
    position: absolute;
    width: 30px;
    height: 30px;
    border-bottom: 3px solid #00c2ff;
    border-right: 3px solid #00c2ff;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.spec-card:hover .corner-accent,
.spec-card:hover .corner-accent-bottom {
    opacity: 1;
}

.spec-card:hover .corner-accent {
    top: 15px;
    left: 15px;
}

.spec-card:hover .corner-accent-bottom {
    bottom: 15px;
    right: 15px;
}

/* Animation keyframes */
@keyframes scroll{
    0%{ transform: translateX(0); }
    100%{ transform: translateX(-50%); }
}

@media(max-width:768px){
    .special-track{
        gap:15px;
    }
    .spec-card{
        min-width:200px;
    }
    
    .spec-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

/* Optional: Add a "View Details" button that appears on hover */
.spec-card .view-details {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: #00c2ff;
    color: white;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: 2px solid #00c2ff;
}

.spec-card:hover .view-details {
    opacity: 1;
    transform: translateY(0);
}

.spec-card .view-details:hover {
    background: transparent;
    color: #00c2ff;
}
/*================ SERVICES ================= */
.services-section{
  background-color: white;
}
.services{
    background:#eaebec;
    padding:50px 60px 50px;
    color:#043168;
}

/* small title */
.small-title{
    font-size:36px; 
    color:#0f2a40;
    font-weight:600;
    margin-bottom:20px;
    text-align: center;
}

/* big heading */
.services h2{
    font-size:38px;
    line-height:1.3;
    max-width:700px;
}
/* button */
.know-btn{
    float:right;
    border:2px solid #2208b4;
    padding:12px 25px;
    color:#250a63;
    text-decoration:none;
    margin-top:-50px;
   margin-right: 100px;
}

.services-images{
    display:flex;
    gap:30px;
    margin-top:0px;
    justify-content:center;
    transform: translateY(40px);
}
.services-images img{
    width:25%;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.white-section{
    background:#eef3f8;
    height:0px;
}

.services-images{
    display:flex;
    gap:30px;
    justify-content:center;
    margin-top:30px;
    transform: translateY(60px);
}

/* shutter box */
.shutter{
    position:relative;
    width:25%;
    height:320px;
    overflow:hidden;
    border-radius:12px;
}

/* image */
.shutter img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* text */
.shutter-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#020561;
    font-size:22px;
    font-weight:bold;
    opacity:0;
    z-index:3;
    transition:0.5s;
}

/* top glass */
.shutter::before{
    content:"";
    position:absolute;
    top:-50%;
    left:0;
    width:100%;
    height:50%;
    background:rgba(255,255,255,0.3);
    backdrop-filter:blur(8px);
    transition:0.6s;
    z-index:2;
}

/* bottom glass */
.shutter::after{
    content:"";
    position:absolute;
    bottom:-50%;
    left:0;
    width:100%;
    height:50%;
    background:rgba(255,255,255,0.3);
    backdrop-filter:blur(8px);
    transition:0.6s;
    z-index:2;
}

/* hover effect */
.shutter:hover::before{
    top:0;
}

.shutter:hover::after{
    bottom:0;
}

.shutter:hover .shutter-text{
    opacity:1;
}

/* ================= SERVICES SECTION RESPONSIVE ================= */
@media (max-width: 1024px) {
    .services {
        padding: 40px 30px;
    }
    .services h2 {
        font-size: 32px;
        max-width: 100%;
        line-height: 1.4;
    }
    .know-btn {
        float: none;
        display: inline-block;
        margin: 20px auto 0;
    }
    .services-images {
        flex-wrap: wrap;
        gap: 20px;
        transform: translateY(30px);
    }
    .shutter {
        width: 48%; 
        height: 250px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 30px 20px;
    }
    .services h2 {
        font-size: 26px;
        line-height: 1.3;
    }
    .know-btn {
        margin-right: 0;
        margin-top: 15px;
    }
    .services-images {
        flex-direction: column; 
        transform: translateY(20px);
    }
    .shutter {
        width: 100%;
        height: 220px;
    }
    .shutter-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .services h2 {
        font-size: 22px;
    }
    .shutter {
        height: 180px;
    }
    .shutter-text {
        font-size: 16px;
        padding: 5px 10px;
    }
    .know-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ================= PROJECTS ================= */
.projects{
  position:relative;
  color:#fff;
  background:url("../project1.jpg") center/cover no-repeat;
  padding:80px 60px;
}

/* Glass effect */
.projects::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(10,42,67,0.55); 
  backdrop-filter:blur(8px);
  z-index:1;
}

.projects > *{
  position:relative;
  z-index:2;
}

/* row */
.project-row{
  display:flex;
  align-items:center;
  gap:40px;
  margin-bottom:60px;
}

/* reverse row */
.project-row.reverse{
  flex-direction:row-reverse;
}

/* text */
.project-text{
  flex:1;
}

.project-text h3{
  font-size:26px;
  margin-bottom:12px;
}

.project-text p{
  font-size:15px;
  line-height:1.6;
  color:#ddd;
  margin-bottom:20px;
}

/* button */
.project-btn{
  display:inline-block;
  padding:12px 28px;
  background:#00c2ff;
  color:#000;
  font-weight:bold;
  border-radius:30px;
  transition:.3s;
}

.project-btn:hover{
  background:#00a5d6;
  transform:translateX(6px);
}

/* image */
.project-img{
  flex:1;
  overflow:hidden;
  border-radius:14px;
}

.project-img img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:transform .6s ease;
}

/* hover transform */
.project-row:hover img{
  transform:scale(1.08);
}

/* ===== Responsive ===== */
@media(max-width:768px){
  .project-row,
  .project-row.reverse{
    flex-direction:column;
  }

  .project-img img{
    height:220px;
  }
}

/* ================= CLIENTS SECTION ================= */
.clients-section {
    padding: 60px 8%;
    background: #eaecf2;
}

.clients-section h2 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 50px;
    color: #101010;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.client-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.client-card img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
}
/* ================= LOADING SPINNER ================= */
.loading-spinner-container {
    text-align: center;
    padding: 40px;
    grid-column: 1 / -1;
}

.loading-spinner {
    font-size: 40px;
    color: #00c2ff;
    margin-bottom: 15px;
}

/* ================= NUMBERS SPEAK ================= */
body{
    background:#e0eaf1;
    font-family: 'Segoe UI', sans-serif;
}

.numbers-speak{
    padding:80px 20px;
    text-align:center;
    color:#333;
}

.numbers-speak h2{
    font-size:36px;
    margin-bottom:15px;
    color:#0a2a43;
    letter-spacing:1.5px;
}

.numbers-desc{
    max-width:700px;
    margin:0 auto 50px;
    font-size:16px;
    color:#555;
}

/* Grid layout */
.numbers-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

/* Card with attractive border */
.number-box{
    background: linear-gradient(145deg,#ffffff,#d6e6f2);
    padding:40px 25px;
    border-radius:20px;
    text-align:center;
    position:relative;
    transition:0.5s;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    border: 3px solid;
    border-image-slice: 1;
    border-width: 3px;
    border-image-source: linear-gradient(135deg,#00c6ff,#0066cc);
}

/* Hover effect */
.number-box:hover{
    transform: translateY(-10px) scale(1.03);
    box-shadow:0 20px 40px rgba(0,198,255,0.25);
}

/* Number */
.number-box h3{
    font-size:48px;
    margin-bottom:10px;
    color:#0a2a43;
    font-weight:bold;
}

/* Title */
.number-box h4{
    font-size:18px;
    margin-bottom:10px;
    color:#1c355e;
    letter-spacing:1px;
}

/* Description */
.number-box p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

@media(max-width:768px){
    .numbers-speak{
        padding:60px 20px;
    }
    .numbers-grid{
        grid-template-columns:1fr;
    }
}

/* ================= FOOTER ================= */
.footer{
    background:rgba(10,42,67,0.95);
    color:#ccc;
    padding:5px 60px 10px;
}
.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 0.8fr 1fr 1.2fr;
    gap:20px;
    font-size:large;
}
.footer-grid > div a{
    display:block;        
    margin-bottom:8px;
    line-height:1.5;
}

.footer-grid > div h3{
    margin-bottom:12px;
    line-height:3;
}
.footer-logo img{
    height:80px;
    margin-bottom:5px;
}

.footer-logo{
    margin-top: 30px;
    margin-bottom:15px;
}
 
.footer h3{
    color:#fff;
    margin-bottom:15px;
     
}
.footer a{
    color:#ccc;
    margin-bottom:8px;
    display:inline-block;
    transition:0.4s ease;
}

.footer-title:hover{
    letter-spacing:1px;
    transform:translateX(10px) scale(1.05);
}

.footer a:hover{
    color:#00c2ff;                 
    transform:translateX(8px);    
    text-shadow:0 0 8px #00c2ff;  
}

.footer-bottom{
    margin-top:40px;
    border-top:1px solid #060244;
    padding-top:15px;
    font-size:14px;
    overflow-x:auto;  
    overflow-x: hidden; 
    padding-left: 30px;       
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    white-space:nowrap;      
    flex-wrap:nowrap;
}

.footer-left,
.footer-right{
    white-space:nowrap;
    flex-shrink:0;            
}

.footer-link{
    color:#ccc;
    text-decoration:none;
    margin-left:6px;
}

.footer-link:hover{
    color:#00c853;
}
/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    place-items: center;
    line-height: 1;   
}
.social-icon i{
    display: block;
    line-height: 2;
    
}
.social-icon.facebook {
    background: #1877f2;  
}

.social-icon.email {
    background: #d44638; 
}

.social-icon.instagram {
    background: radial-gradient(circle at 30% 30%, #fd5949, #d6249f, #fd5949, #d6249f, #285AEB);
}

/* Hover Effects */
.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .social-icons {
        gap: 12px;
        margin-top: 20px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}
/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .hero-content{
        padding:20px;
    }
    .hero h1{
        font-size:32px;
    }
}
.footer-contact-item{
    transition:0.4s;
    line-height: 2.1;   
    padding:1px 0; 
}

.footer-contact-item:hover{
    transform:translateX(10px);
    color:#00c2ff;
}

.footer-contact-item:hover i{
    box-shadow:0 0 10px #00c2ff;
    transform:scale(1.2);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}
/* ================= MOBILE VIEW ONLY ================= */
@media(max-width:768px){
    /* Footer padding reduce */
    .footer{
        padding:10px 20px 20px;
        text-align:center;
    }

    /* Grid → 1 column */
    .footer-grid{
        grid-template-columns:1fr;
        gap:25px;
        font-size:16px;
    }

    /* Logo center */
    .footer-logo{
        margin-top:10px;
        text-align:center;
    }

    .footer-logo img{
        height:70px;
    }

    /* Our Services section (2nd column) - HIDE */
    .footer-grid > div:nth-child(2) {
        display: none !important;
    }

    /* Contact section (3rd column) - LEFT ALIGN */
    .footer-grid > div:nth-child(3) {
        text-align: left !important;
        padding-left: 15px;
        display: block !important;
    }

    .footer-grid > div:nth-child(3) h3 {
        text-align: left !important;
        margin-left: 0;
    }

    .footer-grid > div:nth-child(3) .footer-contact-item {
        justify-content: flex-start !important;
        text-align: left !important;
        display: flex !important;
        align-items: center;
        margin-left: 0;
        padding-left: 5px;
    }

    .footer-grid > div:nth-child(3) .footer-contact-item i {
        margin-right: 15px;
        min-width: 20px;
        text-align: center;
    }

    .footer-grid > div:nth-child(3) .footer-contact-item span {
        text-align: left !important;
        flex: 1;
        margin-left: 0;
        padding-left: 0;
    }

    /* Fix for email and location links */
    .footer-grid > div:nth-child(3) a.footer-contact-item {
        text-decoration: none;
        width: 100%;
    }

    /* Quick Links section (4th column) - LEFT ALIGN */
    .footer-grid > div:nth-child(4) {
        display: block !important;
        text-align: left !important;
        padding-left: 15px;
    }

    .footer-grid > div:nth-child(4) h3 {
        text-align: left !important;
    }

    .footer-grid > div:nth-child(4) a {
        text-align: left !important;
        display: block;
        padding-left: 5px;
    }

    /* Social icons center */
    .social-icons{
        justify-content:center;
    }

    /* Footer Bottom Fix */
    .footer-content{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    /* remove nowrap problem */
    .footer-left,
    .footer-right{
        white-space:normal;
    }

    .footer-right{
        margin-top:5px;
    }

    /* copyright links spacing */
    .footer-link{
        margin:5px;
    }
}

/* extra small mobile */
@media(max-width:480px){
    .footer{
        padding:25px 15px;
    }

    .footer h3{
        font-size:18px;
    }

    .social-icon{
        width:36px;
        height:36px;
        font-size:16px;
    }

    /* Hide Terms & Conditions and Privacy Policy */
    .footer-right{
        display:none;
    }
}
/* WhatsApp Sticky */
.whatsapp-sticky{
  position:fixed;
  left:20px;
  bottom:20px;
  width:55px;
  height:55px;
  background:#25d366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  z-index:9999;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  transition:0.3s;
}

.whatsapp-sticky:hover{
  transform:scale(1.1);
  background:#1ebe5d;
}
/* ===== GLOBAL TEXT ANIMATION ===== */
.animate-text{
  opacity:0;
  transform:translateY(40px);
  transition: all 0.8s ease;
}

.animate-text.show{
  opacity:1;
  transform:translateY(0);
}




















