@charset "utf-8";
/* CSS Document */

       body {
            font-family: 'Oswald', sans-serif;
        }
        p, li{ font-family: Arial, Helvetica, sans-serif; font-size: 16px;}
        /* Existing styles (unchanged) */
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        .navbar-brand img {
            height: 60px;
        }
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            font-family: 'Oswald', sans-serif;
            font-size: 18px;
        }
        .navbar-nav .nav-link:hover {
            color: #00b7eb;
        }
        .slider-container {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
            margin-top: 63px;
        }
        .slider {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }
        .slide {
            width: 33.33%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .slide::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        .slide-text {
            position: relative;
            z-index: 2;
            color: #fff;
            text-align: center;
            padding: 20px;
        }
        .slide-text h2 {
            font-size: 48px;
            font-weight: 700;
            text-transform: uppercase;
        }
        .slide-text p {
            font-size: 20px;
            max-width: 600px;
            line-height: 1.5;
        }
        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 10px;
        }
        .slider-controls button {
            width: 12px;
            height: 16px;
            border-radius: 50%;
            border: 2px solid #fff;
            background: none;
            cursor: pointer;
            transition: background 0.3s;
        }
        .slider-controls button.active {
            background: #00b7eb;
        }
        .service-card {
            background: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
        }
        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #1a1a1a;
        }
        .service-card i {
            font-size: 40px;
            color: #b98939;
        }
        .service-card:hover {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
        }
        .what-we-do-section {
            background: linear-gradient(135deg, #00b7eb 0%, #ff6f61 100%);
            color: #fff;
        }
        .what-we-do-card {
            background: rgba(255, 255, 255, 0.9);
        }
        .what-we-do-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        .what-we-do-card:hover {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
        }
        .who-we-are-section {
           
    background: var(--bs-danger-text-emphasis);

        }
        .who-we-are-content .subtitle {
            font-size: 14px;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .who-we-are-content ul {
            list-style: none;
            padding-left: 0;
        }
        .who-we-are-content ul li {
            display: flex;
            align-items: center;
        }
        .who-we-are-content ul li i {
            color: #00b7eb;
            margin-right: 10px;
        }
        .who-we-are-images img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 15px;
        }
        @media (max-width: 768px) {
            .slider-container {
                height: 400px;
            }
            .slide-text h2 {
                font-size: 32px;
            }
            .slide-text p {
                font-size: 16px;
            }
        }
        @media (max-width: 576px) {
            .slider-container {
                height: 300px;
            }
            .slide-text h2 {
                font-size: 24px;
            }
            .slide-text p {
                font-size: 14px;
            }
            .service-card i {
                font-size: 50px;
            }
            /* .what-we-do-card img, .who-we-are-images img {
                height: 150px;
            } */
            .who-we-are-content h2 {
                font-size: 24px;
            }
            .who-we-are-content p, .who-we-are-content ul li {
                font-size: 14px;
            }
        }
        .nav-item {
            padding: 0 10px;
            text-transform: uppercase;
        }
        /* Technologies Section Styles */
        .technologies-section {
            
            padding: 30px 0;
        }
        .technologies-section h2 {
            color: #1a1a1a;
            margin-bottom: 40px;
            text-align: center;
        }
        .tech-category {
            margin-bottom: 30px;
        }
        .tech-category h3 {
            font-size: 24px;
            color: #345983;
            margin-bottom: 15px;
        }
        .tech-category ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tech-category ul li {
            background: #fff;
            padding: 10px 20px;
            border-radius: 25px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            font-size: 16px;
            color: #333;
        }
        /* Logo Marquee Styles */
        .logo-marquee {
            overflow: hidden;
            margin-top: 40px;
        }
        .logo-marquee .marquee-inner {
            display: flex;
            white-space: nowrap;
            animation: marquee 25s linear infinite;
        }
        .logo-marquee .marquee-inner img {
            height: 70px;
            margin: 0 30px;
            object-fit: contain;
        }
        .logo-marquee:hover .marquee-inner {
            animation-play-state: paused;
        }
        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-260%);
            }
        }
        @media (max-width: 768px) {
            .logo-marquee .marquee-inner img {
                height: 50px;
                margin: 0 20px;
            }
            .tech-category ul {
                flex-direction: column;
                align-items: center;
            }
        }
        @media (max-width: 576px) {
            .technologies-section h2 {
                font-size: 28px;
            }
            .tech-category h3 {
                font-size: 20px;
            }
            .logo-marquee .marquee-inner img {
                height: 40px;
                margin: 0 15px;
            }
        }
		
		/* Footer Styles */
        footer {
            background: #fff;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
            padding: 20px 0;
            color: #333;
        }
        footer .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        footer .copyright {
            font-size: 14px;
            color: #666;
        }
        footer .social-icons a {
            font-size: 20px;
            margin: 0 10px;
            color: #345983;
            transition: color 0.3s ease;
        }
        footer .social-icons a:hover {
            color: #00b7eb;
        }
        footer .quick-links .nav-link {
            font-size: 14px;
            color: #333;
            padding: 0 10px;
            transition: color 0.3s ease;
        }
        footer .quick-links .nav-link:hover {
            color: #00b7eb;
        }
        @media (max-width: 576px) {
            footer .footer-content {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            footer .copyright,
            footer .quick-links .nav-link {
                font-size: 12px;
            }
            footer .social-icons a {
                font-size: 18px;
                margin: 0 8px;
            }
            footer .quick-links .nav-link {
                padding: 0 8px;
            }
        }
		
		
		 /* Static Banner Styles */
        .about-banner {
            position: relative;
            width: 100%;
            height: 400px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }
        .about-banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        .banner-content {
            position: relative;
            z-index: 2;
            padding: 20px;
        }
        .banner-content h1 {
            font-size: 48px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .banner-content p {
            font-size: 20px;
            max-width: 600px;
            margin: 0 auto;
        }
        /* Content Section Styles */
        .about-section {
            padding: 60px 0;
            background: #f9f9f9;
        }
        .about-section h2 {
            font-size: 36px;
            color: #345983;
            margin-bottom: 20px;
        }
        .about-section p, .about-section li {
            font-size: 16px;
            color: #333;
            line-height: 1.6;
        }
        .mission-card {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            margin-bottom: 30px;
        }
        .values-list, .process-list {
            list-style: none;
            padding: 0;
        }
        .values-list li, .process-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        .values-list li i, .process-list li i {
            color: #00b7eb;
            font-size: 20px;
            margin-right: 10px;
            margin-top: 5px;
        }
        .testimonial {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            font-style: italic;
        }
        .testimonial cite {
            display: block;
            font-style: normal;
            color: #345983;
            margin-top: 10px;
            font-size: 14px;
        }
        .cta-section {
            text-align: center;
            padding: 40px 0;
        }
        .cta-section .btn {
            font-size: 18px;
            padding: 10px 20px;
            background: #00b7eb;
            border: none;
            transition: background 0.3s ease;
        }
        .cta-section .btn:hover {
            background: #345983;
        }
  /* Static Banner Styles */
        .services-banner {
            position: relative;
            width: 100%;
            height: 400px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }
        .services-banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        .banner-content {
            position: relative;
            z-index: 2;
            padding: 20px;
        }
        .banner-content h1 {
            font-size: 48px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .banner-content p {
            font-size: 20px;
            max-width: 600px;
            margin: 0 auto;
        }
        /* Content Section Styles */
        .services-section {
            padding: 60px 0;
            background: #f9f9f9;
        }
        .services-section h2 {
            font-size: 36px;
            color: #345983;
            margin-bottom: 20px;
        }
        .services-section p, .services-section li {
            font-size: 16px;
            color: #333;
            line-height: 1.6;
        }
        .service-card {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
        }

       .title-large-upper{
        font-size: 50px;
        text-transform: uppercase;
        font-weight: lighter;
            color: #b56e00;
       }

         .title-large-upper-2{
        font-size: 35px;
        text-transform: uppercase;
        font-weight: lighter;
            color: #b56e00;
       }
        


        



        