/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

/* HEADER */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 25px -2px 25px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  color: #0d47a1;
}

.logo img {
  width: 120px;
  margin-right: 8px;
}

/* NAVIGATION */
.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  font-size: 16px;
  color: #444;
  transition: 0.3s;
}

.nav-links a.active {
  color: #ff5722;
}

.nav-links a:hover {
  color: #0d47a1;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

 /* Water Bubble Animation with Different Shapes */
.bubble-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.bubble {
    position: absolute;
    bottom: -150px;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    animation: bubbleRise linear infinite;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.bubble::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 25%;
    height: 25%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: bubbleShimmer 2s ease-in-out infinite alternate;
}

/* Shape Styles */
.circle {
    border-radius: 50%;
}

.square {
    border-radius: 15%;
}

.diamond {
    border-radius: 0;
    transform: rotate(45deg);
}

.triangle {
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
}

.triangle::before {
    display: none;
}

.hexagon {
    border-radius: 0;
    position: relative;
}

.hexagon::before {
    content: '';
    position: absolute;
    top: -25%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(60deg);
}

.hexagon::after {
    content: '';
    position: absolute;
    top: -25%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(-60deg);
}

.oval {
    border-radius: 50%;
    transform: scaleX(1.5);
}

.star {
    background: transparent !important;
    position: relative;
}

.star::before {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.2);
    font-size: 30px;
    animation: none;
}

.pentagon {
    border-radius: 0;
    position: relative;
    transform: rotate(36deg);
}

.pentagon::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 15%;
    width: 70%;
    height: 70%;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.heart {
    background: transparent !important;
    position: relative;
}

.heart::before {
    content: '♥';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.2);
    font-size: 25px;
    animation: none;
}

/* Individual bubble styles with different sizes */
.bubble1 {
    width: 40px;
    height: 40px;
    left: 5%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.bubble2 {
    width: 35px;
    height: 35px;
    left: 15%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.bubble3 {
    width: 30px;
    height: 30px;
    left: 25%;
    animation-duration: 6s;
    animation-delay: 4s;
}

.bubble4 {
    width: 50px;
    height: 50px;
    left: 35%;
    animation-duration: 10s;
    animation-delay: 1s;
}

.bubble5 {
    width: 45px;
    height: 45px;
    left: 45%;
    animation-duration: 9s;
    animation-delay: 3s;
}

.bubble6 {
    width: 35px;
    height: 35px;
    left: 55%;
    animation-duration: 8s;
    animation-delay: 5s;
}

.bubble7 {
    width: 25px;
    height: 25px;
    left: 65%;
    animation-duration: 5s;
    animation-delay: 1s;
}

.bubble8 {
    width: 40px;
    height: 30px;
    left: 75%;
    animation-duration: 11s;
    animation-delay: 6s;
}

.bubble9 {
    width: 35px;
    height: 35px;
    left: 85%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.bubble10 {
    width: 30px;
    height: 30px;
    left: 95%;
    animation-duration: 9s;
    animation-delay: 4s;
}

.bubble11 {
    width: 40px;
    height: 40px;
    left: 12%;
    animation-duration: 8s;
    animation-delay: 7s;
}

.bubble12 {
    width: 28px;
    height: 28px;
    left: 68%;
    animation-duration: 6s;
    animation-delay: 3s;
}

/* Bubble rise animation with shape-specific movements */
@keyframes bubbleRise {
    0% {
        bottom: -150px;
        transform: translateX(0px) scale(1) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    20% {
        transform: translateX(-20px) scale(1.1) rotate(72deg);
    }
    40% {
        transform: translateX(20px) scale(0.9) rotate(144deg);
    }
    60% {
        transform: translateX(-10px) scale(1.05) rotate(216deg);
    }
    80% {
        transform: translateX(15px) scale(0.95) rotate(288deg);
    }
    90% {
        opacity: 0.7;
    }
    100% {
        bottom: 110vh;
        transform: translateX(0px) scale(1) rotate(360deg);
        opacity: 0;
    }
}

/* Shape-specific animations */
.diamond {
    animation: bubbleRise linear infinite, diamondSpin 2s linear infinite;
}

.triangle {
    animation: bubbleRise linear infinite, triangleWobble 1.5s ease-in-out infinite;
}

.star {
    animation: bubbleRise linear infinite, starTwinkle 1s ease-in-out infinite alternate;
}

.heart {
    animation: bubbleRise linear infinite, heartBeat 1.2s ease-in-out infinite;
}

@keyframes diamondSpin {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

@keyframes triangleWobble {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

@keyframes starTwinkle {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.5); }
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Bubble shimmer effect */
@keyframes bubbleShimmer {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Twinkling particles for underwater effect */
.hero-container::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    top: 30%;
    left: 25%;
    animation: underwaterSparkle 3s ease-in-out infinite;
    box-shadow: 
        30px 40px 0 rgba(255, 255, 255, 0.4),
        -25px -30px 0 rgba(255, 255, 255, 0.5),
        40px -20px 0 rgba(255, 255, 255, 0.3),
        -35px 50px 0 rgba(255, 255, 255, 0.45),
        60px 30px 0 rgba(255, 255, 255, 0.35),
        20px -40px 0 rgba(255, 255, 255, 0.4),
        -15px 70px 0 rgba(255, 255, 255, 0.3),
        50px -10px 0 rgba(255, 255, 255, 0.5);
    z-index: 1;
}

@keyframes underwaterSparkle {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.5);
    }
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

/* Water Bubble Animation with Different Shapes */
.bubble-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.bubble {
    position: absolute;
    bottom: -150px;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    animation: bubbleRise linear infinite;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.bubble::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 25%;
    height: 25%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: bubbleShimmer 2s ease-in-out infinite alternate;
}

/* Shape Styles */
.circle {
    border-radius: 50%;
}

.square {
    border-radius: 15%;
}

.diamond {
    border-radius: 0;
    transform: rotate(45deg);
}

.triangle {
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
}

.triangle::before {
    display: none;
}

.hexagon {
    border-radius: 0;
    position: relative;
}

.hexagon::before {
    content: '';
    position: absolute;
    top: -25%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(60deg);
}

.hexagon::after {
    content: '';
    position: absolute;
    top: -25%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(-60deg);
}

.oval {
    border-radius: 50%;
    transform: scaleX(1.5);
}

.star {
    background: transparent !important;
    position: relative;
}

.star::before {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.2);
    font-size: 30px;
    animation: none;
}

.pentagon {
    border-radius: 0;
    position: relative;
    transform: rotate(36deg);
}

.pentagon::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 15%;
    width: 70%;
    height: 70%;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.heart {
    background: transparent !important;
    position: relative;
}

.heart::before {
    content: '♥';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.2);
    font-size: 25px;
    animation: none;
}

/* Individual bubble styles with different sizes */
.bubble1 {
    width: 40px;
    height: 40px;
    left: 5%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.bubble2 {
    width: 35px;
    height: 35px;
    left: 15%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.bubble3 {
    width: 30px;
    height: 30px;
    left: 25%;
    animation-duration: 6s;
    animation-delay: 4s;
}

.bubble4 {
    width: 50px;
    height: 50px;
    left: 35%;
    animation-duration: 10s;
    animation-delay: 1s;
}

.bubble5 {
    width: 45px;
    height: 45px;
    left: 45%;
    animation-duration: 9s;
    animation-delay: 3s;
}

.bubble6 {
    width: 35px;
    height: 35px;
    left: 55%;
    animation-duration: 8s;
    animation-delay: 5s;
}

.bubble7 {
    width: 25px;
    height: 25px;
    left: 65%;
    animation-duration: 5s;
    animation-delay: 1s;
}

.bubble8 {
    width: 40px;
    height: 30px;
    left: 75%;
    animation-duration: 11s;
    animation-delay: 6s;
}

.bubble9 {
    width: 35px;
    height: 35px;
    left: 85%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.bubble10 {
    width: 30px;
    height: 30px;
    left: 95%;
    animation-duration: 9s;
    animation-delay: 4s;
}

.bubble11 {
    width: 40px;
    height: 40px;
    left: 12%;
    animation-duration: 8s;
    animation-delay: 7s;
}

.bubble12 {
    width: 28px;
    height: 28px;
    left: 68%;
    animation-duration: 6s;
    animation-delay: 3s;
}

/* Bubble rise animation with shape-specific movements */
@keyframes bubbleRise {
    0% {
        bottom: -150px;
        transform: translateX(0px) scale(1) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    20% {
        transform: translateX(-20px) scale(1.1) rotate(72deg);
    }
    40% {
        transform: translateX(20px) scale(0.9) rotate(144deg);
    }
    60% {
        transform: translateX(-10px) scale(1.05) rotate(216deg);
    }
    80% {
        transform: translateX(15px) scale(0.95) rotate(288deg);
    }
    90% {
        opacity: 0.7;
    }
    100% {
        bottom: 110vh;
        transform: translateX(0px) scale(1) rotate(360deg);
        opacity: 0;
    }
}

/* Shape-specific animations */
.diamond {
    animation: bubbleRise linear infinite, diamondSpin 2s linear infinite;
}

.triangle {
    animation: bubbleRise linear infinite, triangleWobble 1.5s ease-in-out infinite;
}

.star {
    animation: bubbleRise linear infinite, starTwinkle 1s ease-in-out infinite alternate;
}

.heart {
    animation: bubbleRise linear infinite, heartBeat 1.2s ease-in-out infinite;
}

@keyframes diamondSpin {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

@keyframes triangleWobble {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

@keyframes starTwinkle {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.5); }
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Bubble shimmer effect */
@keyframes bubbleShimmer {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Twinkling particles for underwater effect */
.hero-container::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    top: 30%;
    left: 25%;
    animation: underwaterSparkle 3s ease-in-out infinite;
    box-shadow: 
        30px 40px 0 rgba(255, 255, 255, 0.4),
        -25px -30px 0 rgba(255, 255, 255, 0.5),
        40px -20px 0 rgba(255, 255, 255, 0.3),
        -35px 50px 0 rgba(255, 255, 255, 0.45),
        60px 30px 0 rgba(255, 255, 255, 0.35),
        20px -40px 0 rgba(255, 255, 255, 0.4),
        -15px 70px 0 rgba(255, 255, 255, 0.3),
        50px -10px 0 rgba(255, 255, 255, 0.5);
    z-index: 1;
}

@keyframes underwaterSparkle {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.5);
    }
}
/* Hero Container */
.hero-container {
    background: linear-gradient(135deg, #4c63d2 0%, #6366f1 50%, #8b5cf6 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Pattern */
.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

/* Hexagon Pattern */
.hexagon-pattern {
    position: absolute;
    right: 10%;
    top: 20%;
    width: 200px;
    height: 200px;
    opacity: 0.1;
}

.hexagon {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite;
}

.hexagon:nth-child(1) { top: 0; left: 0; animation-delay: 0s; }
.hexagon:nth-child(2) { top: 0; left: 40px; animation-delay: 1s; }
.hexagon:nth-child(3) { top: 40px; left: 20px; animation-delay: 2s; }
.hexagon:nth-child(4) { top: 80px; left: 0; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: rotate(45deg) translateY(0px); }
    50% { transform: rotate(45deg) translateY(-10px); }
}

/* Main Content */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    color: white;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 40px;
}


/* Right Side */
.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 320px;
    height: 480px;
    border-radius: 20px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: bounce 3s ease-in-out infinite;
    font-size: 24px;
}

.floating-icon:nth-child(1) {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 30%;
    left: 10%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    right: 10%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 10%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    top: 50%;
    left: -10%;
    animation-delay: 4s;
}

.floating-icon:nth-child(6) {
    top: 60%;
    right: -5%;
    animation-delay: 5s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.button-container {
        display: flex;
        width: 100%;
        align-items: center;
        gap: 10px;
    }

    .cta-btn {
        max-width: 50%;
        width: 43%;
        padding: 16px;
        font-size:16px;
        font-style: bold;
        border-radius: 15px;
        cursor: pointer;
        border: none;
    }


/* Bottom Navigation Footer */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-top: 1px solid #e0e0e0;
            padding: 8px 0 20px 0;
            z-index: 1000;
            box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            max-width: 500px;
            margin: 0 auto;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #8D6E63;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 12px;
            min-width: 60px;
            cursor: pointer;
            position: relative;
        }

        .nav-item.active {
            color: #5D4037;
            background: rgba(93, 64, 55, 0.1);
        }

        .nav-item:hover {
            color: #5D4037;
            transform: translateY(-2px);
        }

        .nav-icon {
            font-size: 22px;
            margin-bottom: 4px;
            transition: transform 0.3s ease;
        }

        .nav-item.active .nav-icon {
            transform: scale(1.1);
        }

        .nav-label {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.3px;
        }


        /* Icon Animations */
        @keyframes bounce {
            0%, 20%, 60%, 100% {
                transform: translateY(0) scale(1);
            }
            40% {
                transform: translateY(-8px) scale(1.1);
            }
            80% {
                transform: translateY(-4px) scale(1.05);
            }
        }

        .nav-item.clicked .nav-icon {
            animation: bounce 0.6s ease;
        }

        /* Active indicator dot */
        .nav-item.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            background: #5D4037;
            border-radius: 50%;
        }

        /* Our Services Section */
.our-services {
    padding: 100px 0;
    background: white;
    position: relative;
}

.process-timeline-for-our-service {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    padding: 10px;
}

.process-step-for-our-services {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.process-step:nth-child(2) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.process-step:nth-child(3) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.process-step:nth-child(4) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.process-step::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px) scale(1.05);
}

.process-step:hover::before {
    right: -30%;
}

.step-number {
    background: rgba(255,255,255,0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    font-weight: bold;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.step-description {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}


    /* Jobs Section Styles */
.jobs-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    padding: 2rem;
}

.jobs-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0.7rem;
}

.job-card {
    background: white;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.job-header {
    padding: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.job-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.job-header:hover::before {
    right: -30%;
}

.job-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.job-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.95;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.expand-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.expand-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(180deg);
}

.job-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: white;
}

.job-content.active {
    max-height: 600px;
}

.job-body {
    padding: 2.5rem;
}

.job-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.job-description h4,
.job-requirements h4 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.job-description p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 12px;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.apply-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.salary-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: #059669;
}

.apply-btn {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* How We Work Section */
.how-we-work {
    padding: 100px 0;
    background: white;
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    padding: 0.7rem;
}

.process-step {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.process-step:nth-child(2) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.process-step:nth-child(3) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.process-step:nth-child(4) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.process-step::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px) scale(1.05);
}

.process-step:hover::before {
    right: -30%;
}

.step-number {
    background: rgba(255,255,255,0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    font-weight: bold;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.step-description {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: #f8fafc;
}

.clients-slider {
    overflow: hidden;
    margin-top: 4rem;
    position: relative;
}

.clients-track {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 2rem;
}

.client-card {
    min-width: 300px;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.client-logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.client-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.client-industry {
    color: #64748b;
    font-size: 1rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

 /* Why Pragma Section */
        .why-pragma {
            padding: 100px 0;
            background: #f8fafc;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title {
            font-size: 42px;
            font-weight: bold;
            color: #1a202c;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 20px;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
            padding: 10px;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #1e4a72 0%, #2563eb 100%);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1e4a72 0%, #2563eb 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            margin: 0 auto 25px;
        }

        .feature-title {
            font-size: 24px;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 15px;
        }

        .feature-description {
            color: #64748b;
            font-size: 16px;
            line-height: 1.6;
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: bold;
            color: #1e4a72;
            display: block;
        }

        .stat-label {
            font-size: 16px;
            color: #64748b;
            margin-top: 10px;
        }

        /* Our Software Services Section */
        .software-services {
            padding: 100px 0;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
            padding: 10px;
        }

        .service-card {
            background: #f8fafc;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(30, 74, 114, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.5s;
            opacity: 0;
        }

        .service-card:hover::before {
            opacity: 1;
            transform: rotate(45deg) translate(50%, 50%);
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: #1e4a72;
            box-shadow: 0 15px 35px rgba(30, 74, 114, 0.15);
        }

        .service-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #1e4a72 0%, #2563eb 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: white;
            margin: 0 auto 25px;
            position: relative;
            z-index: 2;
        }

        .service-title {
            font-size: 22px;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .service-description {
            color: #64748b;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }

        .service-features {
            list-style: none;
            text-align: left;
            position: relative;
            z-index: 2;
        }

        .service-features li {
            color: #4a5568;
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #1e4a72;
            font-weight: bold;
        }

        /* Footer Section */
        .footer {
            background: #1a202c;
            color: white;
            padding: 30px 30px 30px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #1e4a72, #2563eb, #3b82f6);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-section h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            color: white;
        }

        .footer-section p {
            color: #a0aec0;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #2563eb;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: #1e4a72;
            transform: translateY(-3px);
        }

        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #a0aec0;
        }

        .contact-info i {
            margin-right: 12px;
            width: 20px;
        }

        .footer-bottom {
            border-top: 1px solid #2d3748;
            padding-top: 30px;
            text-align: center;
            color: #a0aec0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: white;
        }

/* Hamburger RESPONSIVE MENU */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 65px;
    right: 0;
    flex-direction: column;
    background: #ffffff;
    width: 100%;
    padding: 20px;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
    opacity: 0.98;
    filter: 5px;
    transition: all 0.4 ease;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}



/* Responsive Design for footer */
@media (max-width: 900px) {

    .footer{
        display: none;
        
    }
}

/* Responsive Design Bottom Navigation Footer */
@media (min-width: 900px){
    .bottom-nav{
        display: none;
    }
}

@media (max-width: 480px) {
            .nav-container {
                padding: 0 10px;
            }
            
            .nav-item {
                min-width: 50px;
                padding: 6px 8px;
            }
            
            .nav-icon {
                font-size: 20px;
            }
            
            .nav-label {
                font-size: 10px;
            }

            .nav-item .badge {
                right: 4px;
            }
        }

        /* Touch feedback for mobile */
        @media (hover: none) {
            .nav-item:active {
                transform: scale(0.95);
                background: rgba(93, 64, 55, 0.15);
            }
        }

        /* Safe area for modern phones */
        @supports (padding: max(0px)) {
            .bottom-nav {
                padding-bottom: max(20px, env(safe-area-inset-bottom));
            }
        }  
/* Responsive Design For Hero Section */

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
.hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .hero-title {
        font-size: 36px;
    }

    .button-container {
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .cta-btn {
        max-width: 40%;
        width: 43%;
        padding: 16px;
        font-size: 15px;
    }

    /* Responsive background shapes */
    .bg-shape1 { width: 80px; height: 80px; }
    .bg-shape2 { width: 60px; height: 60px; }
    .bg-shape3 { width: 40px; height: 40px; }
    .bg-shape4 { width: 70px; height: 70px; }
    .bg-shape5 { width: 30px; height: 30px; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
.hero-text h1 {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .button-container {
        gap: 12px;
    }

    .cta-btn {
        max-width: 40%;
        width: 43%;
        padding: 15px;
        font-size: 14px;
        border-radius: 10px;
    }

    .hero-image {
        width: 280px;
        height: 300px;
    }

    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Smaller background shapes for mobile */
    .bg-shape1 { width: 60px; height: 60px; }
    .bg-shape2 { width: 45px; height: 45px; }
    .bg-shape3 { width: 30px; height: 30px; }
    .bg-shape4 { width: 50px; height: 50px; }
    .bg-shape5 { width: 25px; height: 25px; }
}

@media (max-width: 320px) {
    .cta-btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-image {
        width: 240px;
        height: 240px;
    }



/* Right Side */
.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 400px;
    height: 400px;
    border-radius: 0px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: bounce 3s ease-in-out infinite;
    font-size: 24px;
}

.floating-icon:nth-child(1) {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 30%;
    left: 10%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    right: 10%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 10%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    top: 50%;
    left: -10%;
    animation-delay: 4s;
}

.floating-icon:nth-child(6) {
    top: 60%;
    right: -5%;
    animation-delay: 5s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}



/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-btn {
        max-width: 100%;
        width: 100%;
        padding: 16px 24px;
        font-size: 15px;
    }

    /* Responsive background shapes */
    .bg-shape1 { width: 80px; height: 80px; }
    .bg-shape2 { width: 60px; height: 60px; }
    .bg-shape3 { width: 40px; height: 40px; }
    .bg-shape4 { width: 70px; height: 70px; }
    .bg-shape5 { width: 30px; height: 30px; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .button-container {
        gap: 12px;
    }

    .cta-btn {
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 10px;
    }

    .hero-image {
        width: 280px;
        height: 280px;
    }

    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Smaller background shapes for mobile */
    .bg-shape1 { width: 60px; height: 60px; }
    .bg-shape2 { width: 45px; height: 45px; }
    .bg-shape3 { width: 30px; height: 30px; }
    .bg-shape4 { width: 50px; height: 50px; }
    .bg-shape5 { width: 25px; height: 25px; }
}

@media (max-width: 320px) {
    .cta-btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-image {
        width: 240px;
        height: 240px;
    }
}

/* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 32px;
            }

            .section-subtitle {
                font-size: 18px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .stats-section {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .stat-number {
                font-size: 36px;
            }
        }

        @media (max-width: 480px) {
            .why-pragma,
            .software-services {
                padding: 60px 0;
            }

            .section-title {
                font-size: 28px;
            }

            .feature-card,
            .service-card {
                padding: 30px 20px;
            }

            .stats-section {
                grid-template-columns: 1fr;
            }
        }

        /* Animation for scroll effects */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }


        