/* Applying Google font over the website */
body {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    background-color: white;
}

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Navbar Styling - New Design */
#navbar-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.95), rgba(0, 180, 216, 0.95));
    backdrop-filter: blur(15px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.3);
    border-bottom: 2px solid rgba(72, 202, 228, 0.3);
    transition: all 0.3s ease;
}

#navbar-top.scrolled {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.98), rgba(0, 180, 216, 0.98));
    box-shadow: 0 6px 25px rgba(0, 119, 182, 0.4);
    padding: 12px 30px;
}

/* Navbar Left (Logo) */
.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-left: 20px;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

/* Navbar Right (Links) */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Navigation Links - New Style */
.navbar-nav a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    padding: 10px 18px;
    margin: 0 5px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hover Effect - New Style */
.navbar-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 202, 228, 0.4);
}

/* Active State */
.navbar-nav a.active {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(72, 202, 228, 0.5);
}

/* Underline Animation - Removed, using background instead */

/* Fixing Color Syntax Issue */
.link-group a {
    color: #1f7bfc; /* Fixed invalid color syntax */
    transition: color 0.3s ease, transform 0.2s ease;
}

/* Hover Effect for Link Group */
.link-group a:hover {
    color: cyan;
    transform: scale(1.1);
}

/* Mobile Navigation Toggle */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.navbar-toggler i {
    color: #ffffff;
    font-size: 24px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    #navbar-top {
        padding: 8px 15px; /* Adjusted for smaller screens */
    }

    .navbar-logo {
        height: 45px;
        width: auto;
        margin-left: 10px;
    }

    .navbar-nav {
        display: none;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(0, 119, 182, 0.98), rgba(0, 180, 216, 0.98));
        backdrop-filter: blur(15px);
        position: absolute;
        top: 70px;
        right: 0;
        width: 250px;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 119, 182, 0.4);
        border: 2px solid rgba(72, 202, 228, 0.3);
    }
    
    .navbar-nav a {
        margin: 8px 0;
        text-align: center;
    }

    .navbar-nav.show {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}

/* Section Styling */
#contents {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
}

/* Section Title */
.section-title h2 {
    font-size: 2.2rem;
    color: #d3d3d3;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: auto;
    line-height: 1.5;
}

/* Service Boxes - Modern Glassmorphism Style */
/* Service Box Container */
.service-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

/* Service Card */
.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #080808;
    padding: 25px;
    flex: 1 1 45%;
    max-width: 450px;
    min-width: 300px;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* Adding a gradient border animation */
.service-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 12px;
    background: linear-gradient(135deg, rgb(208, 232, 103), rgb(90, 88, 90));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
}

/* Heading and Paragraph */
.service-card h4 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: bold;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

/* Read More Button */
.read-more-btn {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: #fff;
    border: none;
    padding: 12px;
    cursor: pointer;
    margin-top: 12px;
    width:50%;
    text-align: center;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #005f8a, #0077b6);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-card {
        flex-basis: 80%;
    }
}

@media (max-width: 768px) {
    .service-card {
        flex-basis: 100%;
        padding: 20px;
    }
}

/* General Section Styling */
.services-section {
    padding: 50px 0;
    text-align: center;
}

.section-title h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title p {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Services Grid */
.service-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Service Box - Glassmorphism & Soft Shadows */
.service-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #333;
    padding: 30px;
    width: 300px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.15), 
                0 3px 10px rgba(0, 119, 182, 0.1);
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(0, 180, 216, 0.2);
}

/* Gradient Border Animation */
.service-box::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 20px;
    background: linear-gradient(45deg, #00b4d8, #0077b6);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.service-box:hover::before {
    opacity: 1;
}

/* Hover Effect */
.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

/* Service Titles */
.service-box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Service Text */
.service-box p {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.85;
}

/* Service List */
.service-box ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.service-box ul li {
    font-size: 0.95rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

/* Read More Button */
.read-more-container {
    margin-top: 30px;
}

.read-more {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    border-radius: 8px;
    background: linear-gradient(45deg, #0077b6, #00b4d8);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.read-more:hover {
    background: linear-gradient(45deg, #005f8a, #0077b6);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-row {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .service-box {
        width: 100%;
        padding: 20px;
    }

    .section-title h3 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 1rem;
    }
}


/* Company Info */
.company-info {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    /* border-left: 5px solid #028285; */
    font-size: 1.1rem;
    text-align: justify;
}

.company-info strong {
    color: #028285;
}

.skill strong {
    color: #028285;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-box {
        width: 100%;
    }
}

/* Styling contact btn */
.c-btn {
    border: none;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: #fff;
    font-size: 1.2rem;
}

/* Hero Section - Vertical Layout */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.carousel-vertical {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.carousel-item {
    height: 100vh !important;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.carousel-item video {
    object-fit: cover;
    width: 100%;
    height: 100vh;
    filter: brightness(0.6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.carousel-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 1000px;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.85), rgba(0, 180, 216, 0.85));
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease;
    border: 2px solid rgba(72, 202, 228, 0.3);
}

.carousel-container h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.carousel-container p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #ddd;
}

.btn-get-started {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
}

.btn-get-started:hover {
    transform: scale(1.1) translateY(-3px);
    background: linear-gradient(135deg, #005f8a, #0077b6);
}

.highlight {
    color: #00b4d8;
    font-weight: 900;
}

/* Ensure the carousel parent is relative */
#hero-carousel {
    position: relative;
  }
  
  /* Vertical Carousel Controls */
.carousel-control-vertical {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 50px !important;
    height: 50px !important;
    opacity: 1;
    z-index: 10;
    background: rgba(0, 180, 216, 0.8);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.carousel-control-prev.carousel-control-vertical {
    top: 20px !important;
}

.carousel-control-next.carousel-control-vertical {
    bottom: 20px !important;
    top: auto !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent;
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Hover Effect */
.carousel-control-vertical:hover {
    background: rgba(0, 119, 182, 0.9);
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(72, 202, 228, 0.6);
}

/* Vertical Carousel Indicators */
.carousel-indicators-vertical {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.carousel-indicators-vertical button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.carousel-indicators-vertical button.active {
    background: #00b4d8;
    border-color: #00b4d8;
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.8);
    transform: scale(1.3);
}

.carousel-indicators-vertical button:hover {
    background: rgba(0, 180, 216, 0.6);
    border-color: #00b4d8;
}

/* Ensure no other conflicting styles */
.carousel {
    position: relative !important;
    height: 100vh !important;
}

/* Force vertical carousel - Override all Bootstrap horizontal transforms */
.carousel-vertical .carousel-item {
    transform: translateY(0) !important;
}

.carousel-vertical .carousel-item.carousel-item-next:not(.carousel-item-start) {
    transform: translateY(100%) !important;
}

.carousel-vertical .carousel-item.carousel-item-prev:not(.carousel-item-end) {
    transform: translateY(-100%) !important;
}

.carousel-vertical .carousel-item.active.carousel-item-next,
.carousel-vertical .carousel-item.active.carousel-item-prev {
    transform: translateY(0) !important;
}

.carousel-inner {
    height: 100vh !important;
    overflow: hidden;
    position: relative;
}

/* Vertical Carousel Slide Animation - Override Bootstrap Default */
.carousel-vertical .carousel-inner {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-vertical .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100vh;
    margin-right: 0;
    margin-bottom: 0;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    backface-visibility: hidden;
    opacity: 0;
    z-index: 1;
}

/* Override Bootstrap's horizontal transform with vertical - Force vertical movement */
.carousel-vertical .carousel-item-next:not(.carousel-item-start),
.carousel-vertical .active.carousel-item-end {
    transform: translateY(100%) translateX(0) !important;
    opacity: 0;
}

.carousel-vertical .carousel-item-prev:not(.carousel-item-end),
.carousel-vertical .active.carousel-item-start {
    transform: translateY(-100%) translateX(0) !important;
    opacity: 0;
}

.carousel-vertical .carousel-item-next,
.carousel-vertical .carousel-item-prev,
.carousel-vertical .carousel-item.active {
    transform: translateY(0) translateX(0) !important;
    opacity: 1;
}

/* Active item should be visible and on top */
.carousel-vertical .carousel-item.active {
    position: relative;
    z-index: 2;
}

/* Ensure no horizontal movement */
.carousel-vertical .carousel-item[style*="translateX"] {
    transform: translateY(0) translateX(0) !important;
}

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

    .carousel-content {
        padding: 20px;
        font-size: 0.9rem;
    }
}
/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsive Optimizations */
@media (max-width: 768px) {
    .carousel-container {
        padding: 30px 20px;
        width: 95%;
    }
    
    .carousel-container h2 {
        font-size: 1.8rem;
    }

    .carousel-container p {
        font-size: 0.95rem;
    }

    .btn-get-started {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .carousel-control-vertical {
        width: 40px !important;
        height: 40px !important;
    }
    
    .carousel-indicators-vertical {
        right: 15px;
    }
    
    .carousel-indicators-vertical button {
        width: 10px;
        height: 10px;
    }
}


/* Expertise section starts */
.service-card .img img {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.heading small {
    color: #0077b6;
    font-size: 1.5rem;
    font-weight: 600;
}

.heading h3 {
    color: #023e8a;
    font-size: 2.5rem;
    font-weight: 700;
}

.expertise h4 {
    color: #023e8a;
    font-weight: 700;
}

.expertise a {
    text-decoration: none;
    color: #00b4d8;
}

.expertise a:hover {
    color: #0077b6;
}

.expertise .service-card {
    text-align: center;
    padding: 15px 15px;
    border-radius: 0.7rem;
}

/* Case Studies Section */
.case-studies {
    background-color: #f8f9fa;
}

.case-study-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.case-study-card {
    width: 100%;
    max-width: 400px; /* Ensures it doesn’t get too large on big screens */
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 auto; /* Centers the card */
}

/* Adjust for tablets */
@media (min-width: 768px) {
    .case-study-card {
        width: 45%;
    }
}

/* Adjust for desktops */
@media (min-width: 1024px) {
    .case-study-card {
        width: 30%;
    }
}

.case-study-card img {
    width: 50%;
    height: auto;
    border-radius: 8px;
}

.case-study-card h4 {
    color: #023e8a;
    font-weight: 700;
    margin-top: 15px;
}

.case-study-card p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}



/* About Section */
.about {
    background: #fff;
    padding-top: 50px;
    text-align: center;
}

.about strong {
    color: #0077b6;
}



.check-icon {
    color: #0077b6;
    font-weight: bold;
    margin-right: 5px;
}


.read-more:hover {
    background: linear-gradient(135deg, #005f8a, #0077b6);
}

.section-title p {
    color: #666;
    font-size: 1.2em;
}

/* Content Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

/* List Styling */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.check-icon {
    color: green;
    font-weight: bold;
    margin-right: 10px;
}

/* Read More Button */
.read-more {
    display: block;
    width: fit-content;
    margin: 20px auto; /* Centers horizontally */
    padding: 10px 20px;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    transition: 0.3s;
}


/* Animation for sliding image from left */
.animate-left {
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0; /* Make it invisible initially */
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.prev:hover,
.prev-btn:hover {
    color: #0077b6;
    transform: translateX(-10px);
    transition-duration: 1s;
}

.next:hover,
.next-btn:hover {
    color: #0077b6;
    transform: translateX(10px);
    transition-duration: 1s;
}

.service-card1 .img img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
}

    
/*CSS for Scrolling Effect*/
  .scrolling-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: #fff;
    padding: 20px 0;
  }

  .logos {
    display: flex;
    align-items: center;
    animation: scroll 40s linear infinite;
    gap: 40px;
  }

  .logos img {
    max-height: 150px;
    object-fit: contain;
  }

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

/* Blog section starts */
.blog {
    background-color: #f2f2ff;
}

.blog .blogpost .card {
    border: none;
    border-radius: 5%;
}

.nav-bg {
    background-color: #fff;
}

/* Styling contact btn */
.c-btn {
    border: none;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: #fff;
    font-size: 1.2rem;
}

/* Styling modal group */
.btn-c {
    margin-left: 94%;
    background: linear-gradient(135deg, #ff7b00, #ffb700);
    border: none;
    color: #fff;
    font-size: 2rem;
    margin-top: -3%;
}

.btn-c i {
    background: linear-gradient(135deg, #ff7b00, #ffb700);
}

.modal-body .content span {
    font-size: 1rem;
}

.modal-body .content small {
    font-size: 1rem;
    color: #6f34fe;
}

/* Contact form */
.contact {
    background: #f8f9fa;
  }
  
  .contact-card {
    background: white;
    border-radius: 10px;
  }
  
  .contact-form {
    background: white;
    border-radius: 10px;
  }
  
  .form-control {
    border: 2px solid #ced4da;
    transition: all 0.3s ease-in-out;
  }
  
  .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.1);
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    border: none;
    transition: all 0.3s ease-in-out;
  }
  
  .btn-primary:hover {
    background: linear-gradient(135deg, #005f8a, #0077b6);
  }
  
  .contact-card i {
    transition: transform 0.3s;
  }
  
  .contact-card i:hover {
    transform: scale(1.1);
  }

  .text {
    color: #00b4d8;
  }
  

/* Footer section starts */
.footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0 20px;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Main Content - Left and Right Layout */
.footer-main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
}

/* Left Side */
.footer-left {
    flex: 0 0 35%;
    max-width: 35%;
    text-align: left;
}

/* Right Side */
.footer-right {
    flex: 0 0 65%;
    max-width: 65%;
    text-align: left;
}

/* Footer Logo & Brand */
.footer-logo {
    height: 70px;
    object-fit: contain;
    display: block;
    margin: 0 0 15px 0;
    filter: brightness(1.8) contrast(1.2);
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(2) contrast(1.3) drop-shadow(0 0 12px #48cae4);
}

.footer-brand h3 {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: #48cae4;
    margin-bottom: 20px;
    text-align: left;
    transition: text-shadow 0.3s ease;
    line-height: 1.4;
}


/* Navigation Links */
.link-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0 0 0;
}

.link-group a {
    color: #ddd;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
    width: fit-content;
    padding-left: 0;
}

.link-group a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #48cae4;
    transition: width 0.3s ease;
}

.link-group a:hover {
    color: #48cae4;
    padding-left: 8px;
}

.link-group a:hover::after {
    width: calc(100% - 8px);
}

/* Footer Sections */
.footer-sections {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 0;
}

.footer-section {
    text-align: left;
    min-width: 150px;
    flex: 0 1 auto;
}

.footer-section.footer-contact-info {
    min-width: 250px;
    max-width: 300px;
}

.footer-section h3 {
    color: #48cae4;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-section ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #48cae4;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #48cae4;
    padding-left: 8px;
}

.footer-section ul li a:hover::after {
    width: calc(100% - 8px);
}

/* Contact Info in Footer Section */
.footer-section.footer-contact-info ul li {
    color: #ddd;
    font-size: 0.9rem;
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-section.footer-contact-info ul li i {
    color: #48cae4;
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
}

.footer-section.footer-contact-info ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.footer-section.footer-contact-info ul li a:hover {
    color: #48cae4;
}

.footer-section.footer-contact-info ul {
    list-style: none;
    padding: 0;
    text-align: left;
}


.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ddd;
}

.center li {
    text-align: center;
    list-style: none;
}

.center ul {
    text-align: center;
    list-style: none;
}

.center li {
    margin: 8px 0;
}

.center li a {
    display: inline-block;
    text-align: center;
}


/* Social Buttons */
.social-links button {
    margin: 10px;
    padding: 10px 14px;
    font-size: 1.2rem;
    border: none;
    background-color: transparent;
    color: #48cae4;
    border: 2px solid #48cae4;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links button:hover {
    background-color: #48cae4;
    color: #000;
    transform: scale(1.1);
}

/* Divider */
.footer-divider {
    border-top: 1px solid #555;
    margin: 20px auto;
    width: 80%;
}

/* Copyright */
footer p {
    color: #aaa;
}

.copyright {
    text-align: center;
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-main-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-left,
    .footer-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .footer-left {
        text-align: center;
    }

    .footer-brand h3 {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .link-group {
        align-items: center;
    }

    .footer-right {
        text-align: center;
    }

    .footer-sections {
        justify-content: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul {
        text-align: center;
        align-items: center;
    }

    .footer-section.footer-contact-info ul li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-sections {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .footer-section {
        max-width: 100%;
        width: 100%;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}



/* Social Links */
.social-links {
    margin-top: 20px;
}

.social-links button {
    border: none;
    font-size: 1.2rem;
    padding: 12px;
    margin: 5px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-links button:hover {
    transform: translateY(-5px);
}

.instagram:hover { background-color: #E4405F; }
.email:hover { background-color: #007bff; }
.twitter:hover { background-color: #1DA1F2; }
.linkedin:hover { background-color: #0077b5; }


/* Responsive */
@media (max-width: 768px) {
    .footer-sections {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* Styling back to top button */
#btn-back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: #fff;
    animation: pulse 3s infinite;
}

/* Team Section Styling */
.team-section .row {
    display: flex;
    justify-content: space-between; /* Ensures even spacing */
    align-items: center; /* Aligns team members vertically */
    flex-wrap: nowrap; /* Prevents wrapping */
    gap: 20px; /* Space between team members */
}

/* Team Member Styling */
.team-section .col-md-4 {
    flex: 1; /* Distributes equal space */
    max-width: 30%; /* Ensures members fit in a single row */
    text-align: center;
}

.team-section strong {
    color: #0077b6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .team-section .row {
        flex-wrap: wrap; /* Allows stacking on smaller screens */
        justify-content: center;
    }

    .team-section .col-md-4 {
        max-width: 100%; /* Full width on smaller screens */
    }
}

/* Expertise Showcase Section */
.expertise-showcase {
    background-color: #ffffff;
    padding: 60px 0;
}

.expertise-title h2 {
    color: #333;
    font-weight: bold;
    text-align: center;
}

/* Progress Bar Container */
.progress-bar-container {
    margin-bottom: 20px;
}

/* Progress Bar Title */
.progress-title {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

/* Progress Bar Wrapper */
.progress-bar-wrap {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Progress Bar */
.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00b4d8, #0077b6);
    width: 0;  /* Default to 0, animated using JS */
    transition: width 1s ease-in-out;
}

/* Expertise Section Styling */
.expertise {
    padding: 60px 0;
    background: #f8f9fa; /* Light background for contrast */
}

.heading h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #023e8a;
}


/* Services Container */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

/* Service Row */
.service-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Service Card */
.service-card {
    flex: 1;
    max-width: 48%;
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/* Service Card Image */
.service-card img {
    width: 110px;
    height: 110px;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

/* Image Hover Effect */
.service-card:hover img {
    transform: scale(1.1);
}

/* Service Title */
.service-card h4 {
    font-size: 1.5rem;
    color: #0077b6;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

/* Title Hover Effect */
.service-card:hover h4 {
    color: #005f8a;
}


/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    animation: fadeInModal .5s forwards;
}

@keyframes fadeInModal {
    to {
        opacity: 1;
    }
}


.modal-content {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: slideIn 0.5s ease;
    position: relative;
}

.close {
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    transition: transform 0.2s ease, color 0.3s ease;
}

.close:hover {
    color: #ff4c60;
    transform: rotate(90deg) scale(1.2);
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}



/* Responsive Design */
@media (max-width: 992px) {
    .service-row {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 90%;
    }
}

.footer {
    background-color: #222; 
    color: #ccc;
  }

  .footer a {
    color: #bbb;
    text-decoration: none;
    display: block;
    padding: 5px 0;
  }

  .footer a:hover {
    color: #00b4d8;
  }

  .social-icon {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #bbb;
    text-decoration: none;
  }

  .social-icon:hover {
    color: #fff;
  }

  @media (max-width: 768px) {
    .footer .text-md-start, .footer .text-md-end {
      text-align: center !important;
    }
  }

/* about page */
.container {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-bottom: 1cm;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .col {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
  }

  .team-member {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
  }

  .team-member:hover {
    transform: translateY(-5px);
  }

  .pic img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }

  .member-info h4 {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
  }

  .member-info span {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
  }

  .custom-tab {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: rgb(255, 255, 255) !important;
    border-radius: 25px;
    padding: 10px 20px;
    margin: 5px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    border: none;
  }

  .custom-tab:hover {
    background: linear-gradient(135deg, #005f8a, #0077b6);
    color: white !important;
  }

  .custom-tab.active {
    background: linear-gradient(135deg, #005f8a, #0077b6) !important;
    color: white !important;
    border: none;
  }

  .nav-pills .nav-link {
    outline: none;
  }

/* ==================== NEW HOMEPAGE DESIGN STYLES ==================== */

/* Hero Section - New Design */
.hero-new {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,119,182,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text-content {
  animation: fadeInLeft 1s ease-out;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: white;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #023e8a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-main-title .highlight {
  color: #0077b6;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #555;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-hero {
  padding: 15px 35px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
  color: white;
}

.btn-secondary-hero {
  padding: 15px 35px;
  background: white;
  color: #0077b6;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #0077b6;
}

.btn-secondary-hero:hover {
  background: #0077b6;
  color: white;
  transform: translateY(-3px);
}

.hero-visual {
  animation: fadeInRight 1s ease-out;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: #00b4d8;
  box-shadow: 0 15px 40px rgba(0, 180, 216, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0077b6;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

/* About Section - New Design */
.about-new {
  padding: 100px 0;
  background: white;
}

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

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 180, 216, 0.1);
  color: #0077b6;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title-new {
  font-size: 2.8rem;
  font-weight: 700;
  color: #023e8a;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.about-card-main {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: white;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 119, 182, 0.3);
}

.about-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.about-icon-wrapper i {
  font-size: 2rem;
  color: white;
}

.about-card-main h4 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-card-main p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.feature-item:hover {
  background: #e9ecef;
  border-left-color: #0077b6;
  transform: translateX(5px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-size: 1.2rem;
  color: #023e8a;
  margin-bottom: 8px;
}

.feature-text p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.about-vision-card {
  grid-column: 1 / -1;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 25px;
  border-top: 5px solid #0077b6;
}

.about-vision-card h4 {
  font-size: 1.8rem;
  color: #023e8a;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-vision-card p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.read-more-new {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more-new:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
  color: white;
}

/* Services Section - New Design */
.services-section-new {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card-new {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card-new:hover::before {
  transform: scaleX(1);
}

.service-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 119, 182, 0.2);
  border-color: #00b4d8;
}

.service-icon-new {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.service-card-new h4 {
  font-size: 1.5rem;
  color: #023e8a;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card-new > p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.service-features li {
  padding: 8px 0;
  color: #555;
  font-size: 0.95rem;
  position: relative;
  padding-left: 25px;
}

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

.service-link {
  color: #0077b6;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-card-new:hover .service-link {
  transform: translateX(5px);
  color: #00b4d8;
}

.services-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-view-all {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 119, 182, 0.3);
}

.btn-view-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 119, 182, 0.4);
  color: white;
}

/* Expertise Section - New Design */
.expertise-new {
  padding: 100px 0;
  background: white;
}

.expertise-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.expertise-card-new {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.expertise-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 119, 182, 0.2);
  border-color: #00b4d8;
}

.expertise-icon-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.1), rgba(0, 180, 216, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.expertise-card-new:hover .expertise-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.2), rgba(0, 180, 216, 0.2));
}

.expertise-icon-wrapper img {
  width: 80px;
  height: auto;
}

.expertise-card-new h4 {
  font-size: 1.8rem;
  color: #023e8a;
  margin-bottom: 20px;
  font-weight: 700;
}

.expertise-card-new p {
  color: #666;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design for New Layout */
@media (max-width: 992px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .about-content-grid {
    grid-template-columns: 1fr;
  }

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

  .expertise-grid-new {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
    .hero-new {
        padding: 100px 0 60px;
    }

    .hero-main-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        text-align: center;
    }

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

    .section-title-new {
        font-size: 2rem;
    }

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

    .service-card-new {
        padding: 25px;
    }

    .about-card-main,
    .about-vision-card {
        padding: 30px;
    }
}

/* ==================== PAGE HERO SECTION (For All Pages) ==================== */
.page-hero-new {
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    padding: 140px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* ==================== ABOUT PAGE SPECIFIC STYLES ==================== */
.about-intro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.about-intro-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #0077b6;
}

.about-intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.15);
}

.about-intro-card i {
    font-size: 2.5rem;
    color: #0077b6;
    margin-bottom: 20px;
    display: block;
}

.about-intro-card h3 {
    font-size: 1.5rem;
    color: #023e8a;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-intro-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.feature-card-new {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-card-new:hover {
    background: white;
    border-left-color: #0077b6;
    box-shadow: 0 5px 20px rgba(0, 119, 182, 0.1);
    transform: translateX(5px);
}

.feature-card-new .feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: #023e8a;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.about-text-content h3 {
    font-size: 2rem;
    color: #023e8a;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-image-content {
    text-align: center;
}

.about-image-new {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section-new {
    padding: 100px 0;
    background: #f8f9fa;
}

.values-tabs-new {
    max-width: 900px;
    margin: 0 auto;
}

.values-tab-header {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.value-tab-btn {
    padding: 15px 35px;
    background: white;
    border: 2px solid #0077b6;
    color: #0077b6;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.value-tab-btn:hover {
    background: rgba(0, 119, 182, 0.1);
}

.value-tab-btn.active {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: white;
    border-color: transparent;
}

.values-tab-content {
    position: relative;
    min-height: 300px;
}

.value-tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.value-tab-pane.active {
    display: block;
}

.value-content-card {
    background: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-content-card i {
    font-size: 4rem;
    color: #0077b6;
    margin-bottom: 25px;
}

.value-content-card h4 {
    font-size: 2rem;
    color: #023e8a;
    margin-bottom: 20px;
    font-weight: 700;
}

.value-content-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section-new {
    padding: 80px 0;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
}

.cta-card-new {
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.cta-card-new h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-card-new p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta-new {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #0077b6;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #0077b6;
}

/* ==================== CAREERS PAGE STYLES ==================== */
.careers-intro-new {
    padding: 80px 0;
    background: white;
}

.careers-intro-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.careers-intro-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #0077b6;
}

.careers-intro-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.15);
}

.careers-intro-card i {
    font-size: 3rem;
    color: #0077b6;
    margin-bottom: 20px;
}

.careers-intro-card h3 {
    font-size: 1.5rem;
    color: #023e8a;
    margin-bottom: 15px;
    font-weight: 700;
}

.careers-intro-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.career-form-section-new {
    padding: 80px 0;
    background: #f8f9fa;
}

.career-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group-new {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label-new {
    font-weight: 600;
    color: #023e8a;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-input-new {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Josefin Sans', sans-serif;
}

.form-input-new:focus {
    outline: none;
    border-color: #0077b6;
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.file-upload-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-input-new {
    padding: 10px;
}

.file-hint {
    color: #666;
    font-size: 0.9rem;
}

.btn-submit-new {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.3);
}

/* ==================== SERVICES PAGE STYLES ==================== */
.services-page-new {
    padding: 80px 0;
    background: white;
}

.services-grid-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.service-card-page {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-card-page:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.2);
    border-color: #00b4d8;
}

.service-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-page:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-content-page {
    padding: 30px;
}

.service-content-page h4 {
    font-size: 1.5rem;
    color: #023e8a;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content-page p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.btn-service-new {
    padding: 12px 30px;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-new:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-new {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-new {
    display: flex;
    align-items: flex-start;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-info-card h3 {
    font-size: 2rem;
    color: #023e8a;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrapper i {
    font-size: 1.5rem;
    color: white;
}

.contact-info-text h4 {
    font-size: 1.2rem;
    color: #023e8a;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-info-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-info-text a {
    color: #0077b6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #00b4d8;
}

.contact-form-new {
    display: flex;
    align-items: flex-start;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-form-card h3 {
    font-size: 2rem;
    color: #023e8a;
    margin-bottom: 30px;
    font-weight: 700;
}

.form-group-contact {
    margin-bottom: 25px;
}

.form-label-contact {
    display: block;
    font-weight: 600;
    color: #023e8a;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-input-contact {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Josefin Sans', sans-serif;
}

.form-input-contact:focus {
    outline: none;
    border-color: #0077b6;
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.form-textarea-contact {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-contact {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.3);
}

/* Responsive Design for New Pages */
@media (max-width: 992px) {
    .page-hero-title {
        font-size: 2.5rem;
    }

    .about-intro-grid,
    .about-content-split,
    .careers-intro-content,
    .contact-wrapper-new {
        grid-template-columns: 1fr;
    }

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

    .form-grid-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero-new {
        padding: 120px 0 60px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
    }

    .values-tab-header {
        flex-direction: column;
        align-items: center;
    }

    .value-tab-btn {
        width: 100%;
        max-width: 300px;
    }

    .value-content-card {
        padding: 30px 20px;
    }

    .career-form-wrapper,
    .contact-form-card,
    .contact-info-card {
        padding: 30px 20px;
    }
}