/* Global Styles */
html, body{
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     
   }

.h2{
  color: #ffa500 !important;
    font-size: 2.5rem !important;
    margin-bottom: 30px !important;
}

a {
    color: #FFA500;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/*.container {*/
/*    width: 90%;*/
/*    margin: 0 auto;*/
/*}*/

/*Header*/
.site-header {
    width: 100%;
    z-index: 1000;
    position: relative;
}

.navbar {
   /*padding: 15px 0;*/
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: auto;
    width: 80px;
    transition: all 0.3s ease;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.nav-item {
    margin: 0 5px;
    position: relative;
}

.nav-link {
    color: #1d3557;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 10px 15px;
    transition: all 0.3s ease;
    position: relative;
}

/*.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}*/

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066cc, #339aff);
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
}



.contact-btn {
    background: linear-gradient(90deg, #ffc107, #ffaa00);
    color: #1d3557 !important;
    border-radius: 50px;
    padding: 10px 20px !important;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

.contact-btn::after {
    display: none;
}

/* Mobile Menu Trigger */
.menu-trigger {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: none;
    z-index: 20;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon .line {
    width: 100%;
    height: 2px;
    background: #1d3557;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.sidebar-logo {
    height: auto;
    width: 100px;
}

.close-sidebar {
    background: transparent;
    border: none;
    color: #1d3557;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-sidebar:hover {
    background: rgba(0, 0, 0, 0.05);
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    height: 100%;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-menu li a {
    color: #1d3557;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 15px 20px;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sidebar-menu li a:hover {
    background: rgba(0, 102, 204, 0.05);
    color: #0066cc;
    padding-left: 25px;
}

.sidebar-contact-btn {
    background: linear-gradient(90deg, #ffc107, #ffaa00);
    color: #1d3557 !important;
    text-align: center;
    margin: 10px 20px;
    border-radius: 50px;
}

.sidebar-contact-info {
    padding: 20px;
    margin-top: auto;
    background: #f9fafb;
    border-top: 1px solid #eee;
}

.sidebar-contact-info h4 {
    font-size: 1.2rem;
    color: #1d3557;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #555;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #0066cc;
}

.contact-item svg {
    margin-right: 10px;
}

.sidebar-social {
    display: flex;
    gap: 15px;
    padding: 20px;
    justify-content: center;
    border-top: 1px solid #eee;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f5;
    border-radius: 50%;
    color: #1d3557;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-3px);
}

/* Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Scrolled Navbar */
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo {
    width: 80px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .menu-trigger {
        display: block;
    }
    
    .navbar-brand {
        flex-grow: 1;
    }
}

@media (max-width: 576px) {
    .logo {
        width: 80px;
    }
    
    .mobile-sidebar {
        width: 260px;
    }
}
/*Header End*/

/* Homepage Hero */

/*Homepage Hero End*/

/* Carousel Section */
.carousel-wrapper {
    width: 50%; /* 50% width for the carousel */
    position: relative;
    max-height: 100vh;
    /*overflow: hidden;*/
}

/* Set a fixed height for carousel items */
.carousel-item {
    height: 100vh; 
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Text Content Section */
.text-content {
    width: 50%; /* 50% width for text */
    padding: 20px;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .carousel-text-container {
        flex-direction: column;
        text-align: center;
    }

    .carousel-wrapper, 
    .text-content {
        width: 100%;
    }

    .carousel-item {
        height: 50vh;
    }
}

/* Carousel End */

/* Projects Timeline Section */
.projects-timeline {
    position: relative;
    padding: 120px 5% 140px;
    background: linear-gradient(135deg, #f6f8fb 0%, #f1f5f9 100%);
    overflow: hidden;
}

/* Modern Background Elements */
.background-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 102, 204, 0.20) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 204, 0.20) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.background-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.5) 0%, rgba(51, 154, 255, 0) 70%);
    opacity: 0.2;
    animation: float 30s infinite ease-in-out;
}

.particle-1 {
    width: 300px;
    height: 300px;
    top: -5%;
    left: -5%;
    animation-delay: 0s;
}

.particle-2 {
    width: 250px;
    height: 250px;
    top: 20%;
    right: -5%;
    animation-delay: 5s;
}

.particle-3 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 10%;
    animation-delay: 10s;
}

.particle-4 {
    width: 350px;
    height: 350px;
    bottom: -10%;
    right: 15%;
    animation-delay: 15s;
}

.particle-5 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 30%;
    animation-delay: 20s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translate(5%, 3%) scale(1.02);
        opacity: 0.25;
    }
    50% {
        transform: translate(2%, 5%) scale(0.98);
        opacity: 0.2;
    }
    75% {
        transform: translate(-3%, 2%) scale(1.01);
        opacity: 0.15;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
}

.background-glow {
    position: absolute;
    width: 40%;
    height: 40%;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.15;
    animation: pulse 10s infinite alternate ease-in-out;
}

.background-glow.left {
    background: radial-gradient(circle at center, rgba(0, 102, 204, 1), rgba(0, 102, 204, 0));
    top: 20%;
    left: -20%;
}

.background-glow.right {
    background: radial-gradient(circle at center, rgba(51, 154, 255, 1), rgba(51, 154, 255, 0));
    bottom: 10%;
    right: -10%;
    animation-delay: 5s;
}

@keyframes pulse {
    0% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.15;
        transform: scale(1);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.timeline-heading {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1d3557;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.timeline-heading::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #339aff);
    border-radius: 2px;
}

.timeline-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 70px;
    text-align: center;
    line-height: 1.6;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, #0066cc, #339aff);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
}

.timeline-line::before,
.timeline-line::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0066cc;
}

.timeline-line::before {
    top: 0;
}

.timeline-line::after {
    bottom: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    width: 50%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.timeline-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.right {
    left: 50%;
    padding-left: 50px;
}

.timeline-item.left {
    left: 0;
    padding-right: 50px;
    text-align: right;
}

.timeline-marker {
    position: absolute;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.timeline-marker::before {
    content: "";
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.1);
    z-index: -1;
    animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
}

.timeline-item.right .timeline-marker {
    left: -22px;
}

.timeline-item.left .timeline-marker {
    right: -22px;
}

.timeline-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066cc, #339aff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.5);
}

.timeline-icon.upcoming {
    background: linear-gradient(135deg, #339aff, #66b2ff);
}

.timeline-icon svg {
    width: 16px;
    height: 16px;
}

.timeline-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease-in-out;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.timeline-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0066cc, #339aff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.timeline-card:hover::before {
    transform: scaleX(1);
}

.timeline-card-content {
    padding: 30px;
}

.timeline-card h3 {
    font-size: 1.3rem;
    margin: 10px 0;
    color: #1d3557;
    font-weight: 600;
}

.timeline-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0;
}

.status {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 5px;
}

.status.ongoing {
    background: linear-gradient(90deg, rgba(0, 153, 51, 0.1) 0%, rgba(0, 204, 102, 0.1) 100%);
    color: #009933;
    border-left: 3px solid #009933;
}

.status.upcoming {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.1) 0%, rgba(51, 154, 255, 0.1) 100%);
    color: #0066cc;
    border-left: 3px solid #0066cc;
}

/* Animation for timeline items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        left: 0;
        text-align: left;
    }
    
    .timeline-item.right,
    .timeline-item.left {
        left: 0;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-item.right .timeline-marker,
    .timeline-item.left .timeline-marker {
        left: 0;
        right: auto;
    }
    
    .timeline-heading {
        font-size: 2.2rem;
    }
    
    .particle {
        opacity: 0.1;
    }
}
/* Upcoming End */

/*Team Section*/
    .our-team {
        background: linear-gradient(135deg, #f9fafb, #e9ecef);
        padding: 120px 5%;
        text-align: center;
        position: relative;
    }

    .team-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2.5rem;
    }

    .team-member {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease-in-out;
        position: relative;
    }

    .team-member:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .team-img-container {
        position: relative;
        height: 300px;
        overflow: hidden;
    }

    .team-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .team-member:hover .team-img {
        transform: scale(1.05);
    }

    .team-info {
        padding: 25px;
        text-align: center;
    }

    .team-info h5 {
        font-size: 1.3rem;
        color: #1d3557;
        margin-bottom: 8px;
    }

    .team-info p {
        color: #0066cc;
        font-size: 1rem;
        margin: 0;
    }
    
@media (max-width: 768px){
          .team-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
     }

/*Team Section End*/

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #1d3557, #457b9d);
    color: #f8f9fa;
    position: relative;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('dots-pattern.svg') repeat;
    opacity: 0.1;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('wave-pattern-inverted.svg') repeat-x;
    transform: rotate(180deg);
}

.footer-content {
    position: relative;
    padding: 80px 5% 60px;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.footer-column h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #0066cc;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(8px);
}

.footer-links a {
    color: #e9ecef;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #a8dadc;
}

.footer-links a::before {
    content: "›";
    margin-right: 8px;
    font-size: 1.2rem;
    color: #0066cc;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
}

.social-icon:hover {
    background: #0066cc;
    transform: translateY(-5px);
}

.brand-logo img {
    width: 200px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.contact-info {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 15px;
    min-width: 16px;
    color: #0066cc;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details {
    flex-grow: 1;
}

.contact-info p {
    margin: 0;
    line-height: 1.6;
}

.contact-info a {
    color: #a8dadc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-content {
        padding: 60px 5% 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}
/* Footer Section End*/


/* 404, Thank you, Coming Soon */
#error-404 {
    margin: 100px;
    background-color: #ffffff; /* Matches the overall theme */
    padding: 80px 0;
    color: #333; /* Use the standard text color from your site's style */
}

#error-404 h1 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #FFA500; /* Heading color consistent with site */
}

#error-404 p {
    font-size: 1.1rem;
     font-weight: 500;
    color: #FFA500; /* Subtle text color for the message */
}

.image-404 img {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
}

/* 404, Thank you, Coming Soon  */

/* CTA Section */
.projects-cta {
    background: linear-gradient(135deg, #1d3557, #0066cc);
    border-radius: 12px;
    padding: 40px;
    margin: 60px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    gap: 30px;
}

.cta-content {
    flex: 1;
}

.cta-content h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background: white;
    color: #0066cc;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
  
    .projects-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }   
}

/* CTA Section End*/

/*About Us Start*/
.about-section {
    padding: 120px 5%;
    position: relative;
    background: linear-gradient(to right, #f9fafb, #f0f2f5, #f9fafb);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    color: #1d3557;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #339aff);
    border-radius: 2px;
    margin: 0 auto;
}

.about-image-wrapper {
    position: relative;
    padding: 20px 0;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: all 0.4s ease-in-out;
    border: 8px solid white;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
    display: block;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: linear-gradient(135deg, #0066cc, #339aff);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
    z-index: 3;
    animation: pulse 2s infinite;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
    max-width: 90px;
}

.about-content {
    padding-left: 20px;
}

.about-subtitle {
    font-size: 2.2rem;
    color: #1d3557;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.about-tagline {
    font-size: 1.4rem;
    color: #0066cc;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 46px;
    height: 46px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #0066cc;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #333;
}

.about-btn {
    display: inline-block;
    background: linear-gradient(90deg, #ffc107, #ffaa00);
    color: #1d3557;
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(255, 193, 7, 0.3);
    margin-top: 10px;
}

.about-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(255, 193, 7, 0.4);
    color: #1d3557;
}

/* Decorative shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
}

.shape-about-1 {
    width: 180px;
    height: 180px;
    background: #0066cc;
    top: -20px;
    left: -40px;
    animation: floatAnimation 8s ease-in-out infinite;
}

.shape-about-2 {
    width: 120px;
    height: 120px;
    background: #ffc107;
    bottom: 0;
    right: -20px;
    animation: floatAnimation 6s ease-in-out infinite reverse;
}

@keyframes floatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 102, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0); }
}

@media (max-width: 992px) {
    .about-section {
        padding: 80px 5%;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .about-subtitle {
        font-size: 1.8rem;
    }
    
    .about-tagline {
        font-size: 1.2rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        right: 10px;
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 5% 80px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.6rem;
    }
}
/*About Us End*/


/*Why Choose Us*/
.why-choose-section {
    padding: 120px 5%;
    position: relative;
    background: linear-gradient(to left, #f9fafb, #f0f2f5, #f9fafb);
    overflow: hidden;
}

.choose-image-wrapper {
    position: relative;
    padding: 20px 0;
}

.choose-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: all 0.4s ease-in-out;
    border: 8px solid white;
    transform: rotate(2deg);
}

.choose-image:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.choose-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
    display: block;
}

.choose-image:hover img {
    transform: scale(1.05);
}

.projects-badge {
    position: absolute;
    top: 40px;
    left: -30px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: white;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.projects-badge .number {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
}

.projects-badge .text {
    font-size: 0.9rem;
    text-align: center;
    max-width: 90px;
}

.choose-content {
    padding-right: 20px;
}

.choose-subtitle {
    font-size: 2.2rem;
    color: #1d3557;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.choose-tagline {
    font-size: 1.4rem;
    color: #ff9800;
    margin-bottom: 25px;
    font-weight: 500;
}

.choose-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.choose-features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #ff9800;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #333;
}

.trust-points {
    margin: 30px 0;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #ff9800;
    flex-shrink: 0;
}

.trust-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.choose-btn {
    display: inline-block;
    background: linear-gradient(90deg, #0066cc, #339aff);
    color: white;
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 102, 204, 0.3);
    margin-top: 10px;
}

.choose-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 102, 204, 0.4);
    color: white;
}

/* Decorative shapes */
.shape-choose-1 {
    width: 200px;
    height: 200px;
    background: #ff9800;
    top: -30px;
    right: -60px;
    animation: float 8s ease-in-out infinite;
}

.shape-choose-2 {
    width: 140px;
    height: 140px;
    background: #0066cc;
    bottom: -20px;
    left: -40px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@media (max-width: 992px) {
    .why-choose-section {
        padding: 80px 5%;
    }
    
    .choose-subtitle {
        font-size: 1.8rem;
    }
    
    .choose-tagline {
        font-size: 1.2rem;
    }
    
    .choose-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .choose-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .projects-badge {
        width: 110px;
        height: 110px;
        left: 10px;
        top: 20px;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 60px 5% 80px;
    }
    
    .choose-subtitle {
        font-size: 1.6rem;
    }
}
/*Why Choose Us End*/

/*Homepage Our Services*/
.services-section {
    padding: 100px 5% 120px;
    position: relative;
    background: linear-gradient(135deg, #f7f9fc, #eef2f7);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
}

.section-title {
    font-size: 2.8rem;
    color: #1d3557;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #339aff, #0066cc);
    border-radius: 2px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.services-subtitle {
    font-size: 1.8rem;
    color: #1d3557;
    font-weight: bold;
    margin-bottom: 10px;
}

.services-tagline {
    font-size: 1.3rem;
    color: #0066cc;
    margin-bottom: 15px;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card h5 {
    font-size: 1.35rem;
    color: #1d3557;
    margin-bottom: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card:hover h5 {
    color: #0066cc;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    display: inline-block;
    color: #0066cc;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    padding-right: 20px;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.service-link:after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #0066cc;
    padding-right: 25px;
}

.service-link:hover:after {
    right: -5px;
}

.services-cta-wrapper {
    text-align: center;
    margin-top: 30px;
}

.services-btn {
    display: inline-block;
    background: linear-gradient(90deg, #0066cc, #339aff);
    color: white;
    padding: 15px 38px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
}

.services-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 102, 204, 0.35);
    color: white;
}

/* Decorative shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
}

.shape-services-1 {
    width: 200px;
    height: 200px;
    background: #0066cc;
    top: -30px;
    right: -50px;
    animation: floatAnimation 9s ease-in-out infinite;
}

.shape-services-2 {
    width: 150px;
    height: 150px;
    background: #ffc107;
    bottom: 50px;
    left: -40px;
    animation: floatAnimation 7s ease-in-out infinite reverse;
}

.shape-services-3 {
    width: 100px;
    height: 100px;
    background: #339aff;
    top: 40%;
    right: 10%;
    animation: floatAnimation 8s ease-in-out infinite 1s;
}

@keyframes floatAnimation {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@media (max-width: 992px) {
    .services-section {
        padding: 80px 5% 100px;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .services-subtitle {
        font-size: 1.6rem;
    }
    
    .services-tagline {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 60px 5% 80px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1.4rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/*Homepage Our Services End*/

/*FAQs Section*/
.faq-section {
    padding: 110px 5% 120px;
    position: relative;
    background: linear-gradient(to right, #f5f9ff, #edf4fd, #f5f9ff);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
}

.section-title {
    font-size: 2.8rem;
    color: #1d3557;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #339aff);
    border-radius: 2px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-subtitle {
    font-size: 1.8rem;
    color: #1d3557;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-tagline {
    font-size: 1.3rem;
    color: #0066cc;
    margin-bottom: 15px;
    font-weight: 500;
}

.faq-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-image-col {
    flex: 1;
    min-width: 300px;
}

.faq-content-col {
    flex: 1.5;
    min-width: 350px;
}

.faq-image-wrapper {
    position: relative;
    padding: 20px 0;
    margin-bottom: 40px;
}

.faq-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border: 8px solid white;
}

.faq-image img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, #ffc107, #ffaa00);
    color: #1d3557;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
    z-index: 3;
    animation: pulse 2s infinite;
}

.faq-badge .number {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.faq-badge .text {
    font-size: 0.9rem;
    text-align: center;
    max-width: 90px;
    font-weight: 600;
}

.faq-support {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.faq-support h4 {
    font-size: 1.4rem;
    color: #1d3557;
    margin-bottom: 15px;
}

.faq-support p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.faq-contact-btn {
    display: inline-block;
    background: linear-gradient(90deg, #0066cc, #339aff);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 102, 204, 0.25);
}

.faq-contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 102, 204, 0.35);
    color: white;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.1);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question h5 {
    font-size: 1.15rem;
    color: #1d3557;
    font-weight: 600;
    margin: 0;
    padding-right: 40px;
    transition: color 0.3s ease;
}

.faq-question:hover h5 {
    color: #0066cc;
}

.faq-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    color: #0066cc;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-item.active .faq-question {
    background-color: rgba(0, 102, 204, 0.05);
}

.faq-item.active .faq-icon {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Decorative shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
}

.shape-faq-1 {
    width: 100px;
    height: 100px;
    background: #0066cc;
    top: -20px;
    left: -30px;
    animation: floatAnimation 6s ease-in-out infinite;
}

.shape-faq-2 {
    width: 70px;
    height: 70px;
    background: #ffc107;
    bottom: 0;
    left: 40%;
    animation: floatAnimation 8s ease-in-out infinite reverse;
}

.shape-faq-3 {
    width: 180px;
    height: 180px;
    background: #0066cc;
    bottom: -60px;
    right: -60px;
    animation: floatAnimation 10s ease-in-out infinite;
}

.shape-faq-4 {
    width: 120px;
    height: 120px;
    background: #ffc107;
    top: 15%;
    right: 5%;
    animation: floatAnimation 7s ease-in-out infinite reverse;
}

@keyframes floatAnimation {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 193, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

@media (max-width: 992px) {
    .faq-section {
        padding: 80px 5% 100px;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .faq-subtitle {
        font-size: 1.6rem;
    }
    
    .faq-tagline {
        font-size: 1.2rem;
    }
    
    .faq-wrapper {
        flex-direction: column;
    }
    
    .faq-image-col {
        order: 2;
    }
    
    .faq-content-col {
        order: 1;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 60px 0% 80px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1.4rem;
    }
    
    .faq-question h5 {
        font-size: 1.05rem;
    }
}
/*FAQs Section End*/

 /* Clients Section Styling */
    .clients-section {
        background: linear-gradient(135deg, #f9fafb, #e9ecef);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .logo-carousel-container {
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
    }

    .logo-carousel {
        display: flex;
        animation: scroll 30s linear infinite;
        width: calc(180px * 12); /* Width of each logo * total number including duplicates */
    }

    .logo-slide {
        flex: 0 0 180px;
        height: 120px;
        margin: 0 20px;
        background: white;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        padding: 20px;
    }

    .logo-slide:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .logo-slide img {
        max-width: 80%;
        max-height: 80%;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .logo-slide:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-180px * 6)); /* Width of each logo * number of non-duplicate logos */
        }
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .logo-slide {
            flex: 0 0 140px;
            height: 100px;
            margin: 0 15px;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-140px * 6)); /* Width of each logo * number of non-duplicate logos */
            }
        }
    }