* {
    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: 95;
        left: -100%;
        width: 180px; 
        height: 100vh; 
        background: #0a2a43;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 20px 30; 
        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;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  z-index: 3;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}
.hero-content.reveal {
    transform: translate(-50%, -50%) translateY(30px);
}

.hero-content.reveal.show {
    transform: translate(-50%, -50%) translateY(0);
}
/* ================= COMPANY PROFILE ================= */
.company-profile-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #f6f9fc 0%, #edf2f9 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.company-profile-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,194,255,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.company-profile-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10,42,67,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.profile-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Profile Content Styling */
.profile-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.profile-content:hover {
    transform: translateY(-5px);
}

.profile-content h2 {
    font-size: 33px;
    color: #0a2a43;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.info-line {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 12px 15px;
    font-size: 15px;
    line-height: 1.7;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 194, 255, 0.1);
}

.info-line:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 194, 255, 0.15);
    border-color: #00c2ff;
    background: linear-gradient(90deg, white, #f8fcff);
}

.info-line strong {
    min-width: 140px;
    color: #0a2a43;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-line strong i {
    color: #00c2ff;
    font-size: 16px;
}

.info-line span {
    color: #4a5568;
    font-weight: 500;
}

.info-line.highlight {
    background: linear-gradient(135deg, #0a2a43 0%, #1a3a5a 100%);
    border: none;
    border-left: 4px solid #00c2ff;
    margin-top: 25px;
    box-shadow: 0 15px 30px -10px rgba(10, 42, 67, 0.3);
}

.info-line.highlight:hover {
    transform: translateX(8px) translateY(-2px);
    background: linear-gradient(135deg, #0f3150 0%, #1f4569 100%);
}

.info-line.highlight strong {
    color: #fff;
    font-weight: 600;
}

.info-line.highlight strong i {
    color: #00c2ff;
}

.info-line.highlight span {
    color: #e2e8f0;
    font-weight: 500;
}

/* Profile Image Styling */
.profile-image {
    position: relative;
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 3px dashed #00c2ff;
    border-radius: 30px;
    opacity: 0.3;
    transition: all 0.4s ease;
    pointer-events: none;
}

.profile-image:hover::before {
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    opacity: 0.6;
    transform: rotate(3deg);
}

.profile-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.3),
        0 0 0 5px rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.profile-image:hover img {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 
        0 40px 80px -20px rgba(0, 194, 255, 0.4),
        0 0 0 5px #00c2ff;
}

.profile-image::after {
    content: '🔧 Quality Workmanship';
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: linear-gradient(135deg, #00c2ff, #0a2a43);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 194, 255, 0.4);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}


.info-line strong::before {
    content: '•';
    color: #00c2ff;
    font-size: 20px;
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .company-profile-section {
        padding: 70px 30px;
    }
    
    .profile-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .profile-content {
        padding: 30px;
    }
    
    .profile-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .profile-image img {
        height: 450px;
    }
    
    .profile-image::after {
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .company-profile-section {
        padding: 50px 20px;
    }
    
    .profile-content h2 {
        font-size: 30px;
    }
    
    .info-line {
        flex-direction: column;
        gap: 8px;
        padding: 15px;
    }
    
    .info-line strong {
        min-width: auto;
    }
    
    .profile-image img {
        height: 380px;
    }
    
    .profile-image::before {
        display: none;
    }
    
    .profile-image::after {
        font-size: 12px;
        padding: 10px 18px;
        right: 10px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .profile-content {
        padding: 20px;
    }
    
    .profile-content h2 {
        font-size: 26px;
    }
    
    .profile-image img {
        height: 300px;
    }
    
    .profile-image::after {
        padding: 8px 15px;
        font-size: 11px;
    }
}

/* Optional:  animation on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1002;
    }

    .hamburger div {
        width: 100%;
        height: 3px;
        background: #fff;
        transition: all 0.3s ease;
        border-radius: 3px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 220px;
        height: 100vh;
        background: #0a2a43;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 20px 30px;
        gap: 15px;
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        display: flex;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        width: 100%;
        padding: 12px 15px;
        font-size: 16px;
        color: #fff;
    }

    /* Dropdown styles */
    .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 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;
    }

    .nav-links li.social a i {
        font-size: 16px;
    }

    /* Social icons container */
    .nav-links .social-icons-row {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
        width: 100%;
    }

    /* Hamburger animation */
    .hamburger.open div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.open div:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.open div:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero Section */
    .hero {
        height: 60vh;
        min-height: 300px;
    }

    .hero-content {
        padding: 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
        padding: 0 15px;
    }

    /* Company Profile Section */
    .company-profile-section {
        padding: 50px 20px;
    }

    .profile-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .profile-content {
        padding: 20px;
    }

    .profile-content h2 {
        font-size: 28px;
        margin-bottom: 25px;
        text-align: center;
    }

    .info-line {
        flex-direction: column;
        gap: 5px;
        margin-bottom: 20px;
        text-align: center;
    }

    .info-line strong {
        min-width: auto;
        font-size: 16px;
    }

    .info-line span {
        font-size: 14px;
    }

    .profile-image {
        height: 300px;
    }

    .profile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .navbar {
        padding: 12px 15px;
    }

    .logo img {
        height: 45px;
    }

    .nav-links {
        width: 200px;
        padding: 90px 15px 20px;
    }

    .nav-links li a {
        padding: 10px 12px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .company-profile-section {
        padding: 40px 15px;
    }

    .profile-content h2 {
        font-size: 24px;
    }

    .info-line {
        margin-bottom: 15px;
    }

    .info-line strong {
        font-size: 15px;
    }

    .info-line span {
        font-size: 13px;
    }

    .profile-image {
        height: 250px;
    }

    .nav-links li.social a {
        width: 32px;
        height: 32px;
    }

    .nav-links li.social a i {
        font-size: 14px;
    }
}

/* Small devices (landscape phones) */
@media (min-width: 481px) and (max-width: 576px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .profile-content h2 {
        font-size: 26px;
    }

    .profile-image {
        height: 280px;
    }
}

/* Tablets */
@media (min-width: 577px) and (max-width: 768px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .profile-content h2 {
        font-size: 30px;
    }

    .profile-image {
        height: 320px;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Animation for mobile menu */
@keyframes slideIn {
    from {
        right: -100%;
    }
    to {
        right: 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Better touch targets for mobile */
.nav-links li a,
.hamburger,
.social a {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}
/* ================= VISION & MISSION ================= */
.about-section{
  padding:80px 60px;
  background:#f4f7fa;
  background-image:url("../home2.jpeg");
}

.about-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}


.vm-box {
    background: #fff;
    padding: 35px;
    border-left: 6px solid #0a2a43;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
}

.vm-box h2 {
    margin-bottom: 12px;
    color: #0a2a43;
}

/* ================= THE TEAM CARDS - EXACT MATCHING FRONTEND ================= */
.team-profile-section {
    padding: 30px 60px;
    background: #f8fafc;
}

.team-heading {
    text-align: center;
    font-size: 35px;
    margin-bottom: 60px;
    color: #0a2a43;
    letter-spacing: 1px;
}

.team-wrapper {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Left blue accent bar */
.team-member-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: linear-gradient(to bottom, #00c2ff, #0a2a43);
    border-radius: 15px 0 0 15px;
}

.team-member-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-member-card.inactive {
    opacity: 0.7;
    background: #f8fafc;
}

.team-member-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.team-member-name h3 {
    font-size: 22px;
    color: #0a2a43;
    margin-bottom: 6px;
    font-weight: 700;
}

.team-member-position {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-bottom: 8px;
}

.team-member-degree {
    display: inline-block;
    background: #eaf6ff;
    color: #0077b6;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.team-member-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.status-active {
    color: #10b981;
    background: #d1fae5;
}

.status-inactive {
    color: #ef4444;
    background: #fee2e2;
}

.team-member-body {
    margin-bottom: 20px;
}

.team-member-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #444;
    font-size: 14px;
    line-height: 1.6;
}

.team-member-info i {
    width: 18px;
    color: #00c2ff;
    font-size: 14px;
    margin-top: 3px;
}

.team-member-info strong {
    color: #0a2a43;
    font-weight: 600;
    min-width: 100px;
    font-size: 14px;
}

.team-member-info span {
    color: #444;
    flex: 1;
}

.team-member-description {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    color: #444;
    font-size: 14px;
    line-height: 1.7;
}

/* ================= SITE ENGINEERS CARDS ================= */
.team-section {
    padding: 50px 60px;
    background: #f2f3f4;
}

.team-section.light {
    background: #eef3f8;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 35px;
    color: #0a2a43;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.site-engineer-card {
    background: #123c5c;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
    position: relative;
    overflow: hidden;
}

.site-engineer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #00c2ff, #0a2a43);
}

.site-engineer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.site-engineer-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.site-engineer-qualification {
    font-size: 13px;
    color: #00c2ff;
    margin-bottom: 8px;
    font-weight: 500;
}

.site-engineer-designation {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.site-engineer-experience {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

/* ================= SITE SUPERVISORS CARDS ================= */
.team-section.light .site-supervisor-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    color: #333;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-section.light .site-supervisor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-section.light .site-supervisor-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0a2a43;
}

.site-supervisor-experience {
    display: inline-block;
    background: #00c2ff;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* For horizontal scrolling supervisors */
.team-section.light {
    overflow: hidden;
}

.team-section.light .team-grid {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: supervisorScroll 40s linear infinite;
}

.team-section.light .team-grid:hover {
    animation-play-state: paused;
}

.team-section.light .site-supervisor-card {
    min-width: 250px;
    flex-shrink: 0;
}

@keyframes supervisorScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================= WORKFORCE SECTION ================= */
.workers-section {
    padding: 40px 50px;
    background: linear-gradient(135deg, #eef3f8, #ffffff);
    
}

.workers-cards {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.worker-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

.worker-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #215d8a;
}

.worker-card.highlight::before {
    background: #215d8a;
}

.worker-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.worker-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
}

.worker-card span {
    font-size: 15px;
    font-weight: 600;
    color: #0f4066;
}

.worker-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .18);
}

/* ================= 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;
}

/* ================= 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;
}
.footer a{

    display:inline-block;
    transition:0.4s ease;

}
.footer-title:hover{

    letter-spacing:1px;
    transform:translateX(10px) scale(1.05);

}

/* Slide + Glow Effect */

.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  */
    .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;
    }

    
    .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;
}

/* ================= REVEAL ANIMATION ================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE (MOBILE ONLY) ================= */
@media (max-width: 768px) {
    
    
    .navbar {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0; 
        right: -100%;
        width: 180px;
        height: 100vh; 
        background: #0a2a43;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 20px 20px; 
        gap: 15px;
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        display: flex;  
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 15px;
        color: #fff;
        font-size: 16px;
    }
  

    .nav-links li.social a i {
        font-size: 16px;
        color: #fff;
    }

    .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(5px, -5px);
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        padding-left: 15px;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        margin-top: 5px;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 10px 15px;
        font-size: 15px;
        color: #fff;
    }

    /* Hero section mobile */
    .hero {
        height: 50vh;
        margin-top: 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    /* Company profile mobile */
    .profile-wrapper {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .team-wrapper {
        padding: 0 20px;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-grid > div:nth-child(2) {
        display: none;  
    }

    .social-icons {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}