
        body {
            font-family: "Jost", sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            overflow-x: hidden;
            max-width:100%;
            width:100%;

        }

        img, .container, .section {
    max-width: 100%;
    box-sizing: border-box; /* Include padding and border in the element's width and height */
}

          /* Header style */
           /* Header style */
      .header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px; /* Adjust as needed */
    display: flex;
    justify-content: space-between; /* Align hamburger to the left and image to the right */
    align-items: center;
    z-index: 1000;
    background-color: rgba(15,65,152,255);
    color: white;
}

.header-main img {
    height: 150px;
    width: auto; /* Keep aspect ratio */
    max-width: calc(100% - 80px); /* Avoid overflow with the hamburger */
}

.menu-toggle {
    width: 25px;
    height: 20px;
    margin-right: 30px; /* Add more space between the right side and the cross */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle div {
    width: 100%;
    height: 4px;
    background: white;
    transition: all 0.3s ease;
}

/* Adjust the menu for smaller screens */
@media (max-width: 768px) {
    .header-main {
        height: 100px; /* Adjust height for smaller screens */
    }

    .header-main img {
        height: 100px; /* Adjust image height */
        max-width: calc(100% - 60px); /* Prevent image overflow */
    }

    .menu-toggle {
        width: 25px;
        height: 20px;
        margin-right: 20px; /* More space on mobile */
    }
}

/* Menu Styles */
.nav-menu {
    position: fixed;
    top: 150px; /* Adjust according to header height */
    right: 0;
    width: 400px; /* Increased width */
    background: rgba(15, 65, 152, 1);
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 15px;
    text-align: center;
    width: 100%;
    display: block;
    transition: background 0.3s ease;
}

.nav-menu a:hover {
    background: orange;
}

.schedule-button {
    background: orange;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.schedule-button:hover {
    background: darkorange;
}

/* Toggle Effect for Hamburger Icon */
.menu-toggle.active div:nth-child(1) {
     transform: rotate(50deg) translate(5.5px, 5.5px);
}

.menu-toggle.active div:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active div:nth-child(3) {
    transform: rotate(-50deg) translate(5.5px, -5.5px);
}

 /* Hero Section */
#hero {
    margin-top:100px;
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

}

.hero-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.hero-slider .slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
  /*transform: translateY(300px);*/
  transform: scale3d(1, 1, 1);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.hero-slider .slide.show {
  /*transform: translateY(0);*/
  transform: scale3d(1, 1, 1);
  opacity: 1;
  transition: transform 0.5s ease;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5; /* Light overlay for focus on text */
}

.hero-slider .slide .hero-overlay {
    background-color: rgba(0, 0, 0, 0.3); /* Light overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    color: #fff;
    max-width: 820px;
    padding: 10px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 .highlight {
    color: #ff6600; /* Highlight text in orange */
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin: 10px 5px;
    position: relative;
    z-index: 2;
    overflow: hidden;
  opacity: 0;
  transform: perspective(600px) rotateX(30deg) scaleY(0.5);
  transition: transform 2s ease-in-out, opacity 2s ease-in-out;
}

.btn.show {
  transform: perspective(600px) rotateX(0deg) scaleY(1);
  opacity: 1;
}

.btn-primary {
    background-color: #0f4198; /* Blue */
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 68, 204, 0.5);
}

.btn-primary:hover {
    background-color: #0033a0; /* Darker Blue */
    color: #ff6600; /* Orange */
    box-shadow: 0 6px 20px rgba(0, 51, 160, 0.7);
}

.btn-secondary {
    background-color: #ff7f00; /* Orange */
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.5);
}

.btn-secondary:hover {
    background-color: #cc5200; /* Darker Orange */
    color: #0044cc; /* Blue */
    box-shadow: 0 6px 20px rgba(204, 82, 0, 0.7);
}

.btn::after {
    content: '\f061'; /* Font Awesome arrow icon */
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.btn:hover::after {
    opacity: 1;
    transform: translateX(10px);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 2;
}

.slider-controls span {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s;
}

.slider-controls span:hover {
    color: #ff6600;
}

.pagination-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.pagination-dots span {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pagination-dots span.active {
    background-color: #ff6600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .slider-controls {
        padding: 0 10px;
    }
}

    .section1 {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0d3b8a;
    overflow-x: hidden;
    color: white;
}

.hero-section {
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /*background: linear-gradient(to right, #001f3f, #003366); /* Blue Gradient Background */
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    overflow: hidden;
}

.bg-text {
    font-size: 10rem;
    font-weight: bold;
    color: rgba(211, 211, 211, 0.3); /* Orange Highlight */
    animation: scrollBackground 15s linear infinite;
    white-space: nowrap;
}

@keyframes scrollBackground {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    z-index: 1;
}

.text-container {
    max-width: 50%;
}

h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: white;
}

.highlight {
    color: #ffa500; /* Orange Highlight */
    font-weight: bold;
}

.buttons {
    display: flex;
    flex-wrap: wrap; /* Allows buttons to wrap in smaller screens */
    gap: 15px;
    justify-content: center; /* Center buttons horizontally */
    margin: 0 auto; /* Center container if it has a fixed width */
}

.cta-button {
    background-color: #ffa500; /* Orange Button */
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden; /* Changed from 'auto' to 'hidden' to avoid scrolling */
    border-radius: 5px; /* Rounded corners for a button shape */
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: auto;
    white-space: nowrap; /* Prevent text from wrapping */
}

.cta-button .arrow {
    margin-left: 10px;
    transition: margin-left 0.3s ease;
}

.cta-button:hover {
    background-color: #ff8c00; /* Darker Orange */
    transform: translateY(-3px);
}

.cta-button:hover .arrow {
    margin-left: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-button {
        padding: 10px 20px; /* Adjust padding for smaller screens */
        font-size: 0.9rem; /* Slightly smaller font size */
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 8px 16px; /* Further adjust padding */
        font-size: 0.8rem; /* Smaller font size */
    }
}

.image-container {
    position: relative;
    width: 50%;
    perspective: 1000px;
    z-index: 0;
    margin-left: 20px;
}

.floating-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    transform-style: preserve-3d;
    animation: floatImages 20s infinite linear;
 opacity: 0;
  /*transform: translateY(300px);*/
  transform: translateY(1000px);
  transition: transform 1.5s ease, opacity 0.5s ease;
}

.floating-images.show {
  /*transform: translateY(0);*/
  transform: translateY(0);
  opacity: 1;
}

.floating-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

@keyframes floatImages {
    0% {
        transform: rotateX(0) rotateY(0);
    }
    50% {
        transform: rotateX(20deg) rotateY(20deg);
    }
    100% {
        transform: rotateX(0) rotateY(0);
    }
}
    .portfolio-section {
    background-color: rgb(3, 3, 55); /* Blue background */
    color: white;
    padding: 20px;
    text-align: center;
    display: flex; /* Use flexbox for centering */
    flex-wrap: wrap; /* Allow items to wrap */
    justify-content: center; /* Center items horizontally */
    gap: 30px; /* Space between items */
}

.counter-box {
    background-color: white;
    color: black;
    width: 200px; /* Adjusted width for equal size */
    height: 200px; /* Adjusted height for equal size */
    padding: 20px;
    border-radius: 10px;
    border: solid;
    border-color: orange;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 123, 255, 0.5); /* Light blue glow */
    
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.counter-box.show {
    transform: scale3d(1, 1, 1);
    opacity: 1;
    transition: transform 1.5s ease;
}

.counter-box .number {
    padding-top: 30px;
    display: block;
    font-size: 70px;
    color: rgb(3, 3, 55);
    transition: color 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), /* Inner white glow */
                0 0 20px rgba(0, 123, 255, 0.2); /* Outer blue glow */
    outline: 2px solid rgba(255, 255, 255, 0.1); /* Grey outline */
}

.counter-box:hover {
    transform: scale(1.25); /* Zoom on hover */
    transition: transform 0.5s ease;
}

.counter-box:hover .number {
    color: goldenrod;
}

.counter-box .label {
    margin-top: 10px;
    font-size: 18px;
}

    .brand-section {
    text-align: center;
    padding: 50px 20px;
}

.section-heading {
    font-size: 2rem;
    color: rgba(15, 65, 152, 1);
    margin-bottom: 30px;
}

.highlight {
    color: #ffa500; /* Orange Highlight */
    font-weight: bold;
}

.logo-container {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: linear-gradient(to right, #ffe4b5, #ffdab9); /* Light orange gradient */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos {
    display: flex;
    gap: 50px;
    animation: slideLogos 30s linear infinite;
}

.logos img {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logos img:hover {
    transform: scale(1.1);
}

    .service-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            text-align: center;
        }

        .heading {
            font-size: 2.5rem;
            color: #003366; /* Dark Blue */
            margin-bottom: 1rem;
        }

        .heading span {
            color: #ffa500; /* Orange */
        }

        .cube-container {
            perspective: 1000px;
            position: relative;
            width: 200px; /* Reduced size */
            height: 200px; /* Reduced size */
            margin-bottom: 2rem;
        }

        .cube {
            position: absolute;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transform: rotateX(0deg) rotateY(0deg);
            transition: transform 1s;
        opacity: 0;
  /*transform: translateY(300px);*/
  transform: scale3d(0.1, 0.1, 0.1);
  transition: transform 1.5s ease, opacity 0.5s ease;
}

.cube.show {
  /*transform: translateY(0);*/
  transform: scale3d(1.0, 1.0, 1.0);
  opacity: 1;
}

        .face {
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #003366; /* Dark Blue */
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1rem; /* Smaller font size */
            border: 2px solid #ffa500; /* Orange */
        }

        .front  { transform: rotateY(  0deg) translateZ(100px); }
        .back   { transform: rotateY(180deg) translateZ(100px); }
        .left   { transform: rotateY(-90deg) translateZ(100px); }
        .right  { transform: rotateY( 90deg) translateZ(100px); }
        .top    { transform: rotateX( 90deg) translateZ(100px); }
        .bottom { transform: rotateX(-90deg) translateZ(100px); }

        @keyframes rotate {
            from {
                transform: rotateX(0deg) rotateY(0deg);
            }
            to {
                transform: rotateX(360deg) rotateY(360deg);
            }
        }

        .cube {
            animation: rotate 10s linear infinite;
        }

        .service-cards {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            padding: 1rem;
            position: relative;
            width: 100%;
        }

        .service-card {
            background: #fff;
            border: 2px solid #003366; /* Dark Blue */
            border-radius: 8px;
            width: 160px;
            height: fit-content;
            padding: 1rem;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s, transform 0.5s;
            animation: wave 3s ease-in-out infinite;
        }

        .service-card i {
            font-size: 2rem;
            color: #ffa500; /* Orange */
            margin-bottom: 0.5rem;
        }

        .service-card h3 {
            margin: 0.5rem 0;
            font-size: 1.1rem;
            color: #003366; /* Dark Blue */
        }

        .service-card p {
            font-size: 0.9rem;
            color: #333;
        }

        .highlight {
            color: #ffa500; /* Orange */
        }

        @keyframes wave {
            0%, 100% {
                transform: translateY(20px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .service-card.show {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .service-cards {
                flex-direction: column;
                align-items: center;
            }

            .service-card {
                width: 90%;
                margin-bottom: 1rem;
            }
        }
   
         .section {
            padding: 2rem;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            color: #003366; /* Dark Blue */
            margin-bottom: 1.5rem;
        }

        .section-title span {
            color: #ffa500; /* Orange */
        }

           .case-studies {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .case-study {
            background: #fff;
            border: 2px solid #003366; /* Dark Blue */
            border-radius: 8px;
            width: 80%;
            max-width: 600px;
            margin: 1rem 0;
            padding: 1.5rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s, transform 0.5s;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .case-study:nth-child(even) {
            background: #f0f8ff; /* Light Blue */
        }

        .case-study:nth-child(odd) {
            background: #fff; /* White */
        }

        .case-study img {
            border-radius: 8px;
            width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: cover;
            margin-bottom: 1rem;
        }

        .case-study h3 {
            font-size: 1.8rem;
            color: #003366; /* Dark Blue */
            margin: 0.5rem 0;
        }

        .case-study p {
            font-size: 1rem;
            color: #333;
        }

        .case-study .highlight {
            color: #ffa500; /* Orange */
        }

        /*.explore-button {
            background: #003366; 
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 1rem;
        }

        .explore-button:hover {
            background: #ffa500; 
        }*/

        .explore-button {
    background-color: #0033cc;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.explore-button:hover {
    background-color: #ff6600;
}

.case-study-details {
    display: none;
    margin-top: 20px;
    font-size: 14px;
}

        .testimonials {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            align-items: center;
        }

        .testimonial {
            background: #fff;
            border: 2px solid #003366; /* Dark Blue */
            border-radius: 8px;
            width: 80%;
            max-width: 600px;
            margin: 1rem 0;
            padding: 1.5rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s, transform 0.5s;
        }

        .testimonial:nth-child(even) {
            background: #f0f8ff; /* Light Blue */
        }

        .testimonial:nth-child(odd) {
            background: #fff; /* White */
        }

        .testimonial h4 {
            margin: 0.5rem 0;
            font-size: 1.2rem;
            color: #003366; /* Dark Blue */
        }

        .testimonial .stars {
            color: #ffa500; /* Orange */
            font-size: 1.2rem;
        }

        .testimonial p {
            font-size: 1rem;
            color: #333;
        }

        .testimonial-carousel {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            overflow-x: auto;
            gap: 1rem;
            padding: 1rem;
        }

        .testimonial-carousel::-webkit-scrollbar {
            display: none; /* Hide scrollbar for a cleaner look */
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .case-study.show, .testimonial.show {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .case-study {
                width: 90%;
            }
        }

        @media only screen and (max-width: 768px) {
    .testimonials {
        display: flex;
        flex-direction: column;
        align-items: stretch; /* Makes the testimonial take the full width */
        width: 100%; /* Ensures the section is full width */
    }

    .testimonial {
        width: 100%; /* Full width on mobile */
        max-width: 100%; /* Override the max-width for mobile */
        margin: 0 0 1rem 0; /* Space only below each testimonial */
        padding: 1.5rem;
        box-sizing: border-box; /* Ensure padding is included in width */
    }

    .testimonial-carousel {
        display: block; /* Testimonials shown one by one in a column */
        overflow-x: hidden; /* No horizontal scrolling needed */
        padding: 0; /* No padding on mobile to avoid overflow */
        gap: 0; /* Remove gaps between items */
    }

    .testimonial h4, .testimonial p, .testimonial .stars {
        text-align: left; /* Align text to the left */
    }

    .floating-images {
    grid-template-columns: repeat(1, 1fr);
    padding-left:30px;
}
}

    .brochure-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 50px;
      overflow:hidden;
    }

    .heading {
            font-size: 2.5rem;
            color: #003366; /* Dark Blue */
            margin-bottom: 1rem;
        }

        .heading span {
            color: #ffa500; /* Orange */
        }


    .brochure-box {
      width: 400px;
      margin: 20px;
      background-color: white;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: all 0.3s ease-in-out;
      border-radius: 10px;
      padding-bottom: 20px;
    opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s, transform 0.5s;
        }
          .brochure-box.show{
            opacity: 1;
            transform: translateY(0);
          }

    .brochure-box img {
      width: auto;
      height: 100%;
      object-fit: cover;
      padding: 10px;
      border-radius: 20px;
    }

    .brochure-box h3 {
      margin: 10px 0;
    }

    .brochure-box p {
      margin-bottom: 10px;
      color: black;
      padding: 10px;
    }

    .brochure-box a {
      text-decoration: none;
      color: black;
      font-weight: bold;
    }

    .brochure-box:hover {
      /*background: linear-gradient(to bottom right, #66c2ff, #007bff);*/
      background: #083a4d;
      color: white;
      border:solid;
    border-color: gold;
      transform: scale(1.05);
      box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    }
    
    .brochure-box:hover a{
        color: white;
    }

    .brochure-box:hover p{
        color: white;
    }


        .schedule-call-button {
            display: inline-block;
            background-color: #ffa500; /* Orange */
            color: #ffffff;
            font-size: 1.5rem;
            padding: 1rem 2rem;
            border: 2px solid #ffa500; /* Orange border */
            border-radius: 10px;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
            animation: zoomInOut 2s infinite ease-in-out;
        }

        .schedule-call-button:hover {
            background-color: #ffffff; /* White */
            color: #ffa500; /* Orange text */
        }

        @keyframes zoomInOut {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }


        .faq-section {
            max-width: 800px;
            margin: 50px auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #003366; /* Dark Blue */
            margin-bottom: 20px;
        }

        .faq-section h2 span {
            color: #ffa500; /* Orange */
        }

        .faq {
            position: relative;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            background-color: #f9f9f9;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
            opacity: 0;
            transform: translateY(20px);
        }

        .faq .question {
            padding: 15px 20px;
            background-color: #003366; /* Dark Blue */
            color: white;
            font-size: 1.2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq .answer {
            max-height: 0;
            padding: 0 20px;
            overflow: hidden;
            background-color: #fff;
            color: #333;
            transition: max-height 0.3s ease-in-out;
        }

        .faq.active .answer {
            max-height: 150px; /* Adjust based on content */
            padding: 15px 20px;
        }

        .faq.active {
            transform: scale(1.05);
        }

        .faq .plus-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease-in-out;
        }

        .faq.active .plus-icon {
            transform: rotate(45deg);
        }

        .faq.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staircase Animation */
        @keyframes staircase {
            0% { transform: translateY(20px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }

    
        #content5 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15vh; /* To account for the fixed header */
    padding-bottom: 20px;
    background: url('assets/BlueBackground.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh; /* Ensure it covers the full viewport height */
    background-attachment: scroll;}

#page5 {
    background: transparent;
    color: #333;
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    position: relative; /* Required for absolutely positioning the form background */
}

#contact-form {
    background: transparent; /* Keeps the form background transparent */
    padding: 20px;
    border-radius: 10px;
    color: #fff; /* Ensure text is visible against the form background */
}

#contact-form label {
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: block;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid black; /* Black border for input fields */
    border-radius: 8px;
    font-size: 1rem;
    background: transparent; /* Transparent background for input fields */
    color: white; /* Dark text for better readability */
    transition: border-color 0.3s, box-shadow 0.3s;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: #62b5e5;
    box-shadow: 0 0 5px rgba(98, 181, 229, 0.5);
    outline: none;
}

#submit-button {
    background-color: rgba(15,65,152,255);
    color: white;
    border: solid;
    border-color:#ff7f00;
    border-radius: 25px;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.3s;
}

#submit-button:hover {
    background-color: #0b4a75;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    #page5 {
        width: 95%;
        padding: 20px;
    }

    #submit-button {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    #contact-form label {
        font-size: 1rem;
    }

    #contact-form input,
    #contact-form textarea {
        font-size: 0.9rem;
    }

    #submit-button {
        padding: 8px 16px;
    }
}

    .footer-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        color: white;
        background: white;
        border-top: solid;
        border-color: #ff7f00;
        font-family: "Jost", sans-serif;
        font-weight: normal;
    }

    .footer-about, .footer-support, .footer-contact, .footer-image {
        flex: 1;
        background: rgba(15,65,152,255);
        margin: 1px;
        margin-top: 0;
        padding-left: 15px;
        padding-top: 30px;
        width:auto;
        height: auto; /* Adjust height for responsiveness */
        font-size: 14px; /* Smaller text size */
    }
    
    .footer-support ul li {
        margin: 3% 5%;
    }

    .footer-support ul li a {
        text-decoration: none;
        color: white;
        font-size: 14px; /* Smaller text size */
    }

    .footer-bottom {
        text-align: center;
        padding: 10px; /* Reduced padding */
        background: rgba(15,65,152,255);
        color: #fff;
        font-size: 12px; /* Smaller text size */
    }

    .footer-image{
        justify-content: center;
        align-items: center;
        padding:0px;
        width:fit-content;
    }

    .footer-image img{
        width: 100%;
        height: 100%;
    }

    .whatsapp-button {
        position: fixed;
        bottom: 20px;
        left: 20px;
        background: white;
        padding: 0px; /* Reduced padding */
        height:50px;
        border-radius: 50%;
        border-color:green;
    }

    .whatsapp-button img {
        width: 50px; /* Smaller icon size */
        height: 50px;
        border-radius: 50%;
    }

    .whatsapp-button:hover {
        opacity: 0.7;
    }

    .scroll-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: white;
        color: white;
        padding: 2px; /* Reduced padding */
        border:solid;
        border-color:orange;
        height:49px;
        border-radius: 50%;
        display: none;
        font-size: 20px; /* Smaller text size */
        font-weight: bold;
        z-index: 2;
    }

    .scroll-to-top img {
        width: 40px; /* Smaller icon size */
        height: 40px;
        border-radius: 50%;
    }

    .scroll-to-top:hover {
        opacity: 0.7;
    }

    .wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    .wrapper .icon {
        position: relative;
        background: white;
        color: black;
        border-radius: 50%;
        padding: 10px; /* Smaller padding */
        margin: 5px;
        width: 10px; /* Smaller wrapper size */
        height: 10px;
        font-size: 14px; /* Smaller font size */
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: all 0.2s ease;
        border: solid;
        border-color: #ff7f00;
    }

    .wrapper .icon a {
        text-decoration: none;
        color: inherit;
    }

    .wrapper .icon .fa{
        transform: scale(1.4);
    }

    .wrapper .tooltip {
        position: absolute;
        top: 0;
        font-size: 12px; /* Smaller tooltip text size */
        background: #ff7f00;
        color: white;
        padding: 5px 8px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        pointer-events: none;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .wrapper .tooltip::before {
        position: absolute;
        content: "";
        height: 8px;
        width: 8px;
        background: #ff7f00;
        bottom: -3px;
        left: 50%;
        transform: translate(-50%) rotate(45deg);
        transition: all 0.3s ease;
    }

    .wrapper .icon:hover .tooltip {
        top: -35px; /* Adjusted position */
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .wrapper .icon:hover {
        background: #ff7f00;
        color: white;
        transform: scale(1.1);
    }

    @media (max-width: 768px) {
        .footer-about, .footer-support, .footer-contact {
            flex: 100%; /* Full-width on small screens */
             padding-right: 20%;
            padding-left: 20%; /* Adjusted padding */
            margin:0px;
        }

        .wrapper .icon {
            width: 35px; /* Smaller wrapper size for mobile */
            height: 35px;
            font-size: 12px; /* Smaller font size */
        }
        .footer-image {
            padding-right: 40%;
            padding-left: 40%;
            align-items: center;
        }

        .footer-image img{
        width: 120px;
        height: 120px;
        border-radius:50%;
    }
    }

    @media (max-width: 480px) {
        .footer-about, .footer-support, .footer-contact {
            padding-right: 10%;
            padding-left: 10%; /* Adjusted padding */
            margin:0px;
        }

        .footer-bottom {
            font-size: 10px; /* Smaller text for footer bottom */
        }

        .wrapper .icon {
            width: 30px; /* Even smaller wrapper size for very small screens */
            height: 30px;
            font-size: 10px; /* Smaller font size */
        }

        .footer-image {
            padding-right: 40%;
            padding-left: 40%;
            align-items: center;
        }
    }

    /* PDF Embed Section */
#pdf-stats {
    padding: 50px 0;
    text-align: center;
    overflow: hidden;
}

#pdf-stats h2 {
    font-size: 28px;
    color: #0033cc;
    margin-bottom: 20px;
}

.download-link {
    display: inline-block;
    margin-top: 20px;
    background-color: #0033cc;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.download-link:hover {
    background-color: #ff6600;
}


a.contact-link {
    color: white;
    text-decoration: none;
}

a.contact-link:hover {
    text-decoration: underline;
}

/* General Styles */
/* General Styles */
.resume-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    background-color: white;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    color: black;
    overflow: hidden;
    align-content: center;
    justify-content: center;
}

/* Left Column (Blue background) */
.left-column {
    background-color: #004b80;
    color: white;
    width: 30%;
    padding: 30px;
    text-align: center;
}

.left-column a {
    text-decoration: none;
    color: white;
}

.left-column h2,
.left-column h3 {
    margin-bottom: 15px;
}

.left-column .profile-pic img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Right Column (White background) */
.right-column {
    background-color: white;
    width: 70%;
    padding: 30px;
    color: black;
    box-sizing: border-box;  /* Ensure padding is included in width */
    overflow-wrap: break-word;  /* Prevents text overflow */
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;  /* Allow text to wrap properly */
}

.right-column p {
    color: black;
    margin-bottom: 15px;
}

.right-column h3 {
    border-bottom: 2px solid #1E90FF;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.right-column ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.right-column ul li {
    margin-bottom: 15px;
}

.right-column ul li a {
    color: #1E90FF;
    text-decoration: none;
}

.right-column ul li a:hover {
    text-decoration: underline;
}

/* Responsive layout for smaller devices */
@media (max-width: 768px) {
    .resume-container {
        flex-direction: column;
        max-width: 100%;
        margin: 0;
    }

    .left-column, .right-column {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;  /* Ensures no overflow from padding */
    }

    .right-column {
        padding-bottom: 30px;
    }

    .left-column .profile-pic img {
        width: 120px;
        height: 120px;
    }

    .right-column ul {
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .left-column .profile-pic img {
        width: 100px;
        height: 100px;
    }

    .left-column, .right-column {
        padding: 15px;
        box-sizing: border-box;  /* Prevent padding from causing overflow */
    }

    .right-column ul {
        margin-left: 10px;
    }
}


.download-btn-container {
    text-align: center;
    margin-top: 20px;
}

.download-btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {

    .download-btn {
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {

    .download-btn {
        padding: 6px 12px;
    }
}

