        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #0a0a0a;
            color: #ccc;
            overflow-x: hidden;
        }

        /* ===== CUSTOM NAVBAR STYLES ===== */
        .navbar {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .navbar .nav-link {
            color: #ccc;
            font-weight: 500;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .navbar .nav-link:hover,
        .navbar .nav-link.active {
            color: #0272B9;
            transform: translateY(-2px);
        }

        .navbar-brand span {
            color: #0272B9;
        }

        .navbar .btn-primary {
            background: linear-gradient(135deg, #0272B9, #0a5fb0);
            border: none;
            font-weight: 600;
            padding: 0.5rem 1.5rem;
            border-radius: 5px;
            box-shadow: 0 0 20px rgba(2, 114, 185, 0.3);
            transition: all 0.3s ease;
        }

        .navbar .btn-primary:hover {
            box-shadow: 0 0 30px rgba(2, 114, 185, 0.6);
            transform: translateY(-2px);
        }

        /* Mobile Toggler */
        .navbar-toggler {
            border: none;
        }

        .navbar-toggler-icon {
            filter: invert(1);
            /* make hamburger white */
        }

        /* ===== LOGO STYLES ===== */
        .logo-img {
            height: 50px;
            /* adjust as needed */
            width: auto;
            object-fit: contain;
        }

        /* Optional: smaller logo on mobile */
        @media (max-width: 768px) {
            .logo-img {
                height: 40px;
            }
        }



        /* ===== HERO SECTION ===== */
        .home-hero-section {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 60px;
        }

        .home-hero-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* ensures full coverage without blur */
            z-index: 1;
            filter: brightness(1);
            /* keep it bright */
        }

        .home-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.74);
            /* subtle dark overlay */
            z-index: 2;
        }

        .home-hero-content {
            position: relative;
            z-index: 3;
            max-width: 900px;
            padding: 0 1rem;
            color: #fff;
            animation: fadeInUp 1s ease-out;
        }

        .home-hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
            text-shadow: 0 0 15px rgba(2, 114, 185, 0.3);
        }

        .home-hero-content p {
            font-size: 1.3rem;
            color: #ddd;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, #0272B9, #0a5fb0);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(2, 114, 185, 0.3);
        }

        .btn-primary-custom:hover {
            box-shadow: 0 0 30px rgba(2, 114, 185, 0.6);
            transform: translateY(-3px);
        }

        .btn-outline-custom {
            background: transparent;
            color: #0272B9;
            border: 2px solid #0272B9;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline-custom:hover {
            background: #0272B9;
            color: white;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .home-hero-content h1 {
                font-size: 3rem;
            }

            .home-hero-content p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 600px) {
            .home-hero-content h1 {
                font-size: 2.2rem;
            }

            .home-hero-content p {
                font-size: 1rem;
            }
        }


        /* ===== CLIENTS SECTION ===== */
        .clients-section {
            background-color: #0a0a0a;
            padding: 5rem 2rem;
            text-align: center;
        }

        .section-custom-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            width: 100%;
            text-align: center;
        }

        .section-custom-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #0272B9;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .client-logo {
            background: #1a1a1a;
            padding: 2rem;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            transition: all 0.3s ease;
            cursor: pointer;
            filter: grayscale(100%);
        }

        .client-logo:hover {
            filter: grayscale(0%);
            box-shadow: 0 0 30px rgba(2, 114, 185, 0.5);
            transform: translateY(-5px);
        }

        .client-logo i {
            font-size: 3rem;
            color: #0272B9;
        }

        /* ===== ABOUT & STATS SECTION ===== */
        .about-section {
            background-color: #111;
            padding: 5rem 2rem;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 1.5rem;
        }

        .about-text p {
            font-size: 1rem;
            color: #bbb;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .stat-item {
            background: #1a1a1a;
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #0272B9;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateX(10px);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #0272B9;
        }

        .stat-text {
            color: #bbb;
            margin-top: 0.5rem;
        }

        @media (max-width: 768px) {
            .about-container {
                grid-template-columns: 1fr;
            }
        }

        /* ===== WEB DESIGN SHOWCASE ===== */
        .showcase-section {
            background-color: #0d0d0d;
            padding: 5rem 2rem;
        }

        .showcase-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .showcase-text h2 {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 1.5rem;
        }

        .showcase-text p {
            color: #bbb;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .showcase-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .showcase-card {
            background: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .showcase-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .showcase-card:hover img {
            transform: scale(1.1);
        }

        .showcase-btn {
            display: inline-block;
            margin-top: 2rem;
            background: #0272B9;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .showcase-btn:hover {
            box-shadow: 0 0 20px rgba(2, 114, 185, 0.5);
        }

        @media (max-width: 768px) {
            .showcase-container {
                grid-template-columns: 1fr;
            }
        }

        /* ===== SERVICES SECTION ===== */
        .services-section {
            background-color: #0a0a0a;
            padding: 5rem 2rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 3rem;
        }

        .service-card {
            background: #1a1a1a;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-card:hover {
            border-color: #0272B9;
            box-shadow: 0 0 30px rgba(2, 114, 185, 0.3);
            transform: translateY(-10px);
        }

        .service-icon {
            font-size: 3rem;
            color: #0272B9;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .service-card p {
            color: #bbb;
            line-height: 1.6;
        }

        /* ===== PROJECTS SECTION ===== */
        .projects-section {
            background-color: #0b0b0b;
            padding: 5rem 2rem;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 3rem;
        }

        .project-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            cursor: pointer;
        }

        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .project-card:hover img {
            transform: scale(1.1);
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(2, 114, 185, 0.9);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-overlay h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .project-overlay p {
            color: #ddd;
            font-size: 0.9rem;
        }

        .projects-btn {
            display: inline-block;
            margin-top: 2rem;
            background: #0272B9;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .projects-btn:hover {
            box-shadow: 0 0 20px rgba(2, 114, 185, 0.5);
        }

        /* ===== WORK PROCESS SECTION ===== */
        .process-section {
            background: linear-gradient(135deg, #0e0e0e, #141414);
            padding: 5rem 2rem;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 3rem;
        }

        .process-item {
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .process-item::after {
            content: '';
            position: absolute;
            right: -1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 60%;
            background: linear-gradient(to bottom, #0272B9, transparent);
        }

        .process-item:last-child::after {
            display: none;
        }

        .process-icon {
            font-size: 3rem;
            color: #0272B9;
            margin-bottom: 1rem;
        }

        .process-item h3 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .process-item p {
            color: #bbb;
            line-height: 1.6;
        }

        /* ===== TESTIMONIAL SECTION ===== */
        .testimonial-section {
            background-color: #111;
            padding: 5rem 2rem;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: #1a1a1a;
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #0272B9;
        }

        .testimonial-quote {
            color: #bbb;
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #0272B9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }

        .testimonial-info h4 {
            color: #fff;
            margin-bottom: 0.2rem;
        }

        .testimonial-info p {
            color: #0272B9;
            font-size: 0.85rem;
        }

        /* ===== TECHNOLOGIES SECTION ===== */
        .tech-section {
            background-color: #000;
            padding: 5rem 2rem;
        }

        .section-custom-title {
            text-align: center;
            color: #0272B9;
            font-size: 2rem;
            margin-bottom: 3rem;
            font-family: 'Inter', sans-serif;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .tech-item {
            text-align: center;
            padding: 2rem;
            background: #1a1a1a;
            border-radius: 10px;
            min-height: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
            filter: grayscale(100%);
        }

        .tech-item i {
            font-size: 2.5rem;
            color: #0272B9;
            margin-bottom: 0.5rem;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tech-item p {
            color: #bbb;
            font-size: 1rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        .tech-item:hover {
            filter: grayscale(0%);
            box-shadow: 0 0 20px rgba(2, 114, 185, 0.4);
            transform: translateY(-5px);
        }

        .tech-description {
            text-align: center;
            color: #bbb;
            margin-top: 2rem;
            font-size: 1rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .tech-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .tech-grid {
                grid-template-columns: 1fr;
            }
        }


        /* ===== FAQ SECTION ===== */
        .faq-section {
            background-color: #0d0d0d;
            padding: 5rem 2rem;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 3rem;
        }

        .accordion {
            background-color: transparent;
        }

        .accordion-item {
            background-color: #1a1a1a;
            border: 1px solid rgba(2, 114, 185, 0.2);
            margin-bottom: 1rem;
            border-radius: 5px;
        }

        .accordion-button {
            background-color: #1a1a1a;
            color: #fff;
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background-color: #0272B9;
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: #0272B9;
        }

        .accordion-body {
            background-color: #1a1a1a;
            color: #bbb;
        }




        /* ===== HERO SECTION ===== */
        .abt-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 50%, #0272b9 100%);
            background-size: 400% 400%;
            position: relative;
            overflow: hidden;
            padding: 60px 20px;
        }

        .abt-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(2, 114, 185, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(244, 101, 15, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .abt-hero-content {
            text-align: center;
            z-index: 2;
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }

        .abt-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 1.2;
        }

        .abt-hero-subtitle {
            font-size: 1.3rem;
            color: #cccccc;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .abt-hero-btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: #0272B9;
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #0272B9;
            cursor: pointer;
        }

        .abt-hero-btn:hover {
            background-color: transparent;
            color: #0272B9;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(244, 101, 15, 0.3);
        }

        /* ===== WHO WE ARE SECTION ===== */
        .abt-who {
            padding: 100px 20px;
            background-color: #0a0a0a;
        }

        .abt-who-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .abt-who-text {
            animation: slideInLeft 0.8s ease-out;
        }

        .abt-who-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .abt-who-text p {
            font-size: 1.1rem;
            color: #cccccc;
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .abt-who-highlight {
            color: #0272b9;
            font-weight: 600;
        }

        .abt-who-img {
            animation: slideInRight 0.8s ease-out;
        }

        .abt-who-img img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(2, 114, 185, 0.2);
            transition: transform 0.3s ease;
        }

        .abt-who-img img:hover {
            transform: scale(1.05);
        }

        /* ===== MISSION SECTION ===== */
        .abt-mission {
            padding: 100px 20px;
            background: linear-gradient(135deg, #0d0d0d 0%, #111111 100%);
        }

        .abt-mission-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 40px;
            align-items: center;
        }

        .abt-mission-icon {
            font-size: 4rem;
            color: #0272b9;
            animation: fadeInUp 0.8s ease-out;
        }

        .abt-mission-text h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .abt-mission-text p {
            font-size: 1.1rem;
            color: #cccccc;
            line-height: 1.8;
        }

        /* ===== VISION SECTION ===== */
        .abt-vision {
            padding: 100px 20px;
            background-color: #0a0a0a;
        }

        .abt-vision-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            background: linear-gradient(135deg, #0d0d0d 0%, #111111 100%);
            padding: 60px 40px;
            border-radius: 15px;
            border-left: 5px solid #0272b9;
            animation: fadeInUp 0.8s ease-out;
        }

        .abt-vision-text h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .abt-vision-text p {
            font-size: 1.2rem;
            color: #cccccc;
            line-height: 1.9;
            font-style: italic;
        }

        /* ===== VALUES SECTION ===== */
        .abt-values {
            padding: 100px 20px;
            background: linear-gradient(135deg, #0d0d0d 0%, #111111 100%);
        }

        .abt-values-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .abt-values-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .abt-values-header p {
            font-size: 1.1rem;
            color: #cccccc;
        }

        .abt-values-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .abt-values-card {
            background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 100%);
            padding: 40px 30px;
            border-radius: 10px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            text-align: center;
            animation: fadeInUp 0.8s ease-out;
        }

        .abt-values-card:hover {
            border-color: #0272b9;
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(2, 114, 185, 0.2);
        }

        .abt-values-icon {
            font-size: 3rem;
            color: #0272B9;
            margin-bottom: 20px;
        }

        .abt-values-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .abt-values-desc {
            font-size: 1rem;
            color: #cccccc;
            line-height: 1.7;
        }

        /* ===== GLOBAL PRESENCE SECTION ===== */
        .abt-global {
            padding: 100px 20px;
            background-color: #0a0a0a;
        }

        .abt-global-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .abt-global-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .abt-global-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .abt-global-location {
            background: linear-gradient(135deg, #0d0d0d 0%, #111111 100%);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            border-left: 4px solid #0272b9;
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out;
        }

        .abt-global-location:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(2, 114, 185, 0.15);
        }

        .abt-global-icon {
            font-size: 2.5rem;
            color: #0272B9;
            margin-bottom: 15px;
        }

        .abt-global-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .abt-global-info {
            font-size: 0.95rem;
            color: #cccccc;
        }

        /* ===== TEAM SECTION ===== */
        .abt-team {
            padding: 100px 20px;
            background: linear-gradient(135deg, #0d0d0d 0%, #111111 100%);
        }

        .abt-team-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .abt-team-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .abt-team-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .abt-team-card {
            text-align: center;
            animation: fadeInUp 0.8s ease-out;
        }

        .abt-team-img-wrapper {
            position: relative;
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: 10px;
            height: 300px;
        }

        .abt-team-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .abt-team-card:hover .abt-team-img {
            transform: scale(1.1);
        }

        .abt-team-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(2, 114, 185, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .abt-team-card:hover .abt-team-overlay {
            opacity: 1;
        }

        .abt-team-social {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .abt-team-social a {
            width: 40px;
            height: 40px;
            background-color: #0272B9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .abt-team-social a:hover {
            background-color: #ffffff;
            color: #0272B9;
            transform: scale(1.1);
        }

        .abt-team-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 5px;
        }

        .abt-team-role {
            font-size: 1rem;
            color: #0272b9;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .abt-team-bio {
            font-size: 0.95rem;
            color: #cccccc;
            line-height: 1.6;
        }

        /* ===== CTA SECTION ===== */
        .abt-cta {
            padding: 100px 20px;
            background-color: #0a0a0a;
            text-align: center;
        }

        .abt-cta-container {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, #0d0d0d 0%, #111111 100%);
            padding: 60px 40px;
            border-radius: 15px;
            border: 2px solid #0272b9;
            box-shadow: 0 0 40px rgba(2, 114, 185, 0.2);
            animation: fadeInUp 0.8s ease-out;
        }

        .abt-cta-text h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .abt-cta-text p {
            font-size: 1.1rem;
            color: #cccccc;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .abt-cta-btn {
            display: inline-block;
            padding: 15px 50px;
            background-color: #0272B9;
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid #0272B9;
            cursor: pointer;
        }

        .abt-cta-btn:hover {
            background-color: transparent;
            color: #0272B9;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(244, 101, 15, 0.3);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .abt-hero-title {
                font-size: 2.2rem;
            }

            .abt-hero-subtitle {
                font-size: 1rem;
            }

            .abt-who-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .abt-who-text h2 {
                font-size: 2rem;
            }

            .abt-mission-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .abt-mission-icon {
                font-size: 3rem;
            }

            .abt-values-header h2,
            .abt-global-header h2,
            .abt-team-header h2 {
                font-size: 2rem;
            }

            .abt-cta-container {
                padding: 40px 20px;
            }

            .abt-cta-text h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .abt-hero {
                min-height: 80vh;
                padding: 40px 15px;
            }

            .abt-hero-title {
                font-size: 1.8rem;
                letter-spacing: 1px;
            }

            .abt-hero-subtitle {
                font-size: 0.95rem;
            }

            .abt-hero-btn {
                padding: 12px 30px;
                font-size: 0.95rem;
            }

            .abt-who,
            .abt-mission,
            .abt-vision,
            .abt-values,
            .abt-global,
            .abt-team,
            .abt-cta {
                padding: 60px 15px;
            }

            .abt-who-text h2,
            .abt-mission-text h3,
            .abt-vision-text h3 {
                font-size: 1.5rem;
            }

            .abt-values-grid,
            .abt-global-container,
            .abt-team-grid {
                grid-template-columns: 1fr;
            }
        }


        /* ===== HERO SECTION ===== */
        .srv-hero {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            padding: 120px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .srv-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(2, 114, 185, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(30px);
            }
        }

        .srv-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease;
        }

        .srv-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 1.2;
        }

        .srv-hero-subtitle {
            font-size: 1.3rem;
            color: #cccccc;
            margin-bottom: 40px;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        .srv-hero-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #0272B9 0%, #0a5fa0 100%);
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s ease;
            border: 2px solid #0272B9;
            box-shadow: 0 0 20px rgba(2, 114, 185, 0.3);
        }

        .srv-hero-btn:hover {
            background: linear-gradient(135deg, #0a5fa0 0%, #0272B9 100%);
            box-shadow: 0 0 40px rgba(2, 114, 185, 0.6);
            transform: translateY(-3px);
            color: #ffffff;
        }

        /* ===== SERVICES SECTION ===== */
        .services-section {
            padding: 100px 20px;
            background-color: #0a0a0a;
        }

        .services-section-title {
            text-align: center;
            margin-bottom: 80px;
            animation: fadeInDown 0.8s ease;
        }

        .services-section-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .services-section-title p {
            font-size: 1.1rem;
            color: #cccccc;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background-color: #111111;
            padding: 40px 30px;
            border-radius: 15px;
            border: 1px solid #222222;
            text-align: center;
            transition: all 0.4s ease;
            animation: fadeInUp 0.8s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(2, 114, 185, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #0272B9;
            box-shadow: 0 0 30px rgba(2, 114, 185, 0.4), inset 0 0 20px rgba(2, 114, 185, 0.05);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #0272B9 0%, #0272B9 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 0 30px rgba(2, 114, 185, 0.5);
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .service-card p {
            font-size: 0.95rem;
            color: #aaaaaa;
            line-height: 1.8;
        }

        /* ===== WHY CHOOSE US SECTION ===== */
        .srv-why {
            padding: 100px 20px;
            background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
        }

        .srv-why-title {
            text-align: center;
            margin-bottom: 80px;
            animation: fadeInDown 0.8s ease;
        }

        .srv-why-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .srv-why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .srv-why-card {
            background-color: #0a0a0a;
            padding: 40px 30px;
            border-radius: 15px;
            border: 1px solid #222222;
            text-align: center;
            transition: all 0.4s ease;
            animation: fadeInUp 0.8s ease;
        }

        .srv-why-card:hover {
            transform: translateY(-8px);
            border-color: #0272B9;
            box-shadow: 0 0 25px rgba(244, 101, 15, 0.3);
        }

        .srv-why-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #0272B9 0%, #0272B9 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            transition: all 0.4s ease;
        }

        .srv-why-card:hover .srv-why-icon {
            transform: scale(1.15) rotate(-10deg);
        }

        .srv-why-title-text {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .srv-why-text {
            font-size: 0.95rem;
            color: #aaaaaa;
            line-height: 1.8;
        }

        /* ===== PROCESS SECTION ===== */
        .srv-process {
            padding: 100px 20px;
            background-color: #0a0a0a;
        }

        .srv-process-title {
            text-align: center;
            margin-bottom: 80px;
            animation: fadeInDown 0.8s ease;
        }

        .srv-process-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .srv-process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .srv-step {
            text-align: center;
            animation: fadeInUp 0.8s ease;
            position: relative;
        }

        .srv-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #0272B9, transparent);
            transform: translateX(50%);
        }

        @media (max-width: 768px) {
            .srv-step:not(:last-child)::after {
                display: none;
            }
        }

        .srv-step-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #0272B9 0%, #0272B9 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            transition: all 0.4s ease;
            box-shadow: 0 0 20px rgba(2, 114, 185, 0.3);
        }

        .srv-step:hover .srv-step-icon {
            transform: scale(1.15);
            box-shadow: 0 0 40px rgba(2, 114, 185, 0.6);
        }

        .srv-step-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .srv-step-desc {
            font-size: 0.9rem;
            color: #aaaaaa;
            line-height: 1.6;
        }

        /* ===== TECHNOLOGIES SECTION ===== */
        .srv-tech {
            padding: 100px 20px;
            background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
        }

        .srv-tech-title {
            text-align: center;
            margin-bottom: 80px;
            animation: fadeInDown 0.8s ease;
        }

        .srv-tech-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .srv-tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .srv-tech-item {
            background-color: #0a0a0a;
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #222222;
            text-align: center;
            transition: all 0.4s ease;
            animation: fadeInUp 0.8s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .srv-tech-item:hover {
            transform: scale(1.1);
            border-color: #0272B9;
            box-shadow: 0 0 25px rgba(2, 114, 185, 0.4);
        }

        .srv-tech-logo {
            font-size: 2.5rem;
            margin-bottom: 12px;
            transition: all 0.4s ease;
        }

        .srv-tech-item:hover .srv-tech-logo {
            transform: scale(1.2);
        }

        .srv-tech-name {
            font-size: 0.95rem;
            font-weight: 600;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ===== TESTIMONIALS SECTION ===== */
        .srv-testimonials {
            padding: 100px 20px;
            background-color: #0a0a0a;
        }

        .srv-testimonials-title {
            text-align: center;
            margin-bottom: 80px;
            animation: fadeInDown 0.8s ease;
        }

        .srv-testimonials-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .srv-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .srv-testimonial-card {
            background-color: #111111;
            padding: 40px 30px;
            border-radius: 15px;
            border: 1px solid #222222;
            transition: all 0.4s ease;
            animation: fadeInUp 0.8s ease;
        }

        .srv-testimonial-card:hover {
            transform: translateY(-8px);
            border-color: #0272B9;
            box-shadow: 0 0 25px rgba(2, 114, 185, 0.3);
        }

        .srv-testimonial-text {
            font-size: 0.95rem;
            color: #aaaaaa;
            margin-bottom: 25px;
            line-height: 1.8;
            font-style: italic;
        }

        .srv-testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .srv-client-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0272B9 0%, #0272B9 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
        }

        .srv-client-info h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 3px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .srv-client-info p {
            font-size: 0.85rem;
            color: #0272B9;
            font-weight: 500;
        }

        /* ===== CTA SECTION ===== */
        .srv-cta {
            padding: 100px 20px;
            background: linear-gradient(135deg, #0272B9 0%, #0a5fa0 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .srv-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(244, 101, 15, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .srv-cta::after {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(244, 101, 15, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .srv-cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease;
        }

        .srv-cta-text h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .srv-cta-text p {
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .srv-cta-btn {
            display: inline-block;
            padding: 15px 50px;
            background-color: #0272B9;
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s ease;
            border: 2px solid #0272B9;
            box-shadow: 0 0 20px rgba(244, 101, 15, 0.4);
        }

        .srv-cta-btn:hover {
            background-color: transparent;
            border-color: #ffffff;
            color: #ffffff;
            box-shadow: 0 0 40px rgba(244, 101, 15, 0.6);
            transform: translateY(-3px);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .srv-hero-title {
                font-size: 2rem;
            }

            .srv-hero-subtitle {
                font-size: 1rem;
            }

            .services-section-title h2,
            .srv-why-title h2,
            .srv-process-title h2,
            .srv-tech-title h2,
            .srv-testimonials-title h2,
            .srv-cta-text h2 {
                font-size: 2rem;
            }

            .service-card,
            .srv-why-card,
            .srv-testimonial-card {
                padding: 30px 20px;
            }

            .srv-step-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }

            .srv-tech-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }
        }

        /* ===== MODERN FOOTER ===== */
        .footer {
            background-color: #0a0a0a;
            color: #bbb;
            padding: 4rem 2rem 2rem;
            border-top: 2px solid rgba(2, 114, 185, 0.2);
            font-family: 'Poppins', sans-serif;
        }

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        /* Footer Section Titles */
        .footer-section h4 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 600;
            position: relative;
        }

        .footer-section h4::after {
            content: "";
            width: 50px;
            height: 2px;
            text-align: center;
            background: #0272B9;
            display: block;
            margin-top: 5px;
            border-radius: 2px;
        }

        /* Contact Info */
        .contact-info {
            list-style: none;
            padding: 0;
        }

        .contact-info li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 0.8rem;
        }

        .contact-info img {
            width: 20px;
            height: 20px;
        }

        /* Quick Links */
        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li {
            margin-bottom: 0.8rem;
        }

        .footer-links ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: #0272B9;
            text-decoration: underline;
        }

        /* Social Icons */
        .footer-section.footer-social {
            text-align: left;
        }

        .footer-logo img {
            width: 200px;
            margin-bottom: 15px;
        }

        .footer-description {
            color: #bbb;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border-radius: 50%;
            background: #1a1a1a;
            color: #fff;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #0272B9;
            transform: translateY(-3px);
        }


        /* Map Section */
        .footer-map iframe {
            width: 100%;
            height: 180px;
            border: 0;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .footer-map iframe:hover {
            transform: scale(1.02);
        }

        /* Footer Bottom */
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(2, 114, 185, 0.2);
            font-size: 0.9rem;
            color: #888;
        }

        .footer-bottom a {
            color: #0272B9;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .contact-info li {
                justify-content: center;
            }

            .social-icons {
                justify-content: center;
            }

            .footer-map iframe {
                height: 200px;
            }
        }


        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .navbar-menu {
                display: none;
            }

            .section-custom-title {
                font-size: 2rem;
            }

            .process-item::after {
                display: none;
            }
        }

        /* CEO Section in about page */
        .abt-ceo {
            background-color: #0A0A0A;
            position: relative;
        }

        .abt-ceo-img {
            width: 100%;
            max-width: 380px;
            border: 4px solid #0272B9;
            object-fit: cover;
        }

        .abt-ceo-overlay {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .abt-ceo-img-wrapper:hover .abt-ceo-overlay {
            opacity: 1;
        }

        .abt-ceo-social {
            background-color: #0272B9;
            color: #fff;
            padding: 10px 12px;
            border-radius: 50%;
            transition: 0.3s;
        }

        .abt-ceo-social:hover {
            background-color: #fff;
            color: #0272B9;
        }

        .abt-ceo {
            background-color: #0A0A0A;
            position: relative;
        }

        .abt-ceo-img {
            width: 100%;
            max-width: 380px;
            border: 4px solid #0272B9;
            object-fit: cover;
        }

        .abt-ceo-overlay {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .abt-ceo-img-wrapper:hover .abt-ceo-overlay {
            opacity: 1;
        }

        .abt-ceo-social {
            background-color: #0272B9;
            color: #fff;
            padding: 10px 12px;
            border-radius: 50%;
            transition: 0.3s;
        }

        .abt-ceo-social:hover {
            background-color: #fff;
            color: #0272B9;
        }