/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}


html {
    scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* all similar content styling codes */
section {
    padding: 100px 0;
}

.max-width {
    max-width: 1200px;
    padding: 0 80px;
    margin: auto;
}

.about,
.services,
.skills,
.teams,
.contact,
footer {
    font-family: 'Poppins', sans-serif;
}

.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

section .title {
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

section .title::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}

section .title::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: crimson;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}

/* ================= TOP BAR ================= */
.top-bar {
    background: rgb(50, 147, 231);
    color: #fff;
    font-size: 14px;
    padding: 6px 15px;
}

.top-bar .top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar i {
    margin-right: 6px;
}

/* Social icons box style */
.social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-left: 8px;
    padding-left: 5px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    border-radius: 50%;
    /* 50% = circle */
    background: #fff;
    color: rgb(50, 147, 231);
    transition: 0.3s;
}

.social-icons a:hover {
    background: rgb(254, 153, 116);
    color: #000;
}

/* ================= HEADER ================= */
.header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 3px 5px;
}

.header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 50px;
    font-size: 16px;
}

.logo img {
    display: block;
    width: 110px;
    height: 110px;
}

.logo-text {
    font-size: 22px;
}

.logo-text p {
    font-size: 16px;
}

/* Contact Info Wrapper */
.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* Each Info Box */
.info-box {
    display: flex;
    align-items: left;
    gap: 5px;
    flex: 1 1 30%;
    min-width: 220px;
    padding: 2px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-box i {
    font-size: 33px;
    color: rgb(50, 147, 231);
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Icon hover effect */
.info-box:hover i {
    color: rgb(254, 153, 116);
    transform: scale(1.3);
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.info-box strong {
    font-size: 16px;
    display: block;
    text-align: left;
}

.info-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
    text-align: left;
}

/* ================= RESPONSIVE BREAKPOINTS ================= */
@media (max-width: 992px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .info-box {
        justify-content: center;
        margin-bottom: 12px;
    }

    .info-box i {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        margin-top: 5px;
    }

    .info-box {
        flex: 1 1 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .info-box {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .info-box i {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .logo {
        flex-direction: column;
        text-align: center;
    }

    .logo h3 {
        font-size: 18px;
    }
}

/* Responsive for tablets and smaller screens */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: stretch;
    }
}

/* navbar styling */
.navbar {
    position: static;
    top: 130px;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 15px 20px 15px;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
    background: rgb(50, 147, 231) !important;
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;

}

.navbar .logo {
    margin-right: auto;
    background: transparent;
}

.navbar .menu {
    display: flex;
    gap: 60px;
    padding-left: 170px;
}

.navbar .menu li {
    list-style: none;
    display: inline-block;
    position: relative;
}

.navbar .menu li a {
    /* display: block; */
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    /* margin-right: 10px; */
    text-align: center;
    /* padding: 0px 16px; */
    /* border-bottom: 2px solid transparent;
        transition: color 0.3s ease, border-bottom 0.3s ease; */
    transition: color 0.3s ease;
    text-decoration: none;
}

.navbar .menu li a:hover {
    color: coral;
    /* border-bottom: 2px solid coral; */
    text-decoration: none;
}

.navbar.sticky .menu li a:hover {
    color: #fff;
}

.nav-arrow {
    font-size: 10px;
    margin-left: 5px;
}


/* --- DROPDOWN MENU STYLES --- */
/* Initially hide the dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    min-width: 1000px;
    z-index: 1000;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Show on hover for desktop */
@media (min-width: 993px) {
    .has-dropdown:hover>.dropdown-menu {
        display: flex;
    }

    .nav-arrow {
        transition: transform 0.3s;
    }

    .has-dropdown:hover .nav-arrow {
        transform: rotate(180deg);
    }
}

/* Show the dropdown when the 'open' class is present */
.dropdown-menu.open {
    display: flex;
}

.dropdown-column {
    flex: 1 1 30%;
    padding: 0 10px;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: rgb(50, 147, 231);
    border: 1px solid #eee;
}

.dropdown-item i {
    font-size: 24px;
    color: rgb(50, 147, 231);
    margin-right: 15px;
    min-width: 20px;
}

.dropdown-item div {
    flex-grow: 1;
}

.dropdown-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #111;
    cursor: pointer;
}

.dropdown-item p {
    font-size: 12px;
    line-height: 1.4;
    color: #666;
    margin: 0;
}

.dropdown-item:hover p {
    color: #333;
}

/* --- RESPONSIVENESS (Mobile/Tablet) --- */

@media (max-width: 992px) {
    .navbar .menu {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 60px;
        left: -100%;
        text-align: center;
        transition: all 0.3s ease;
        background: #fff;
    }

    .navbar .menu.active {
        left: 0;
    }

    .navbar .menu li a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    /* Mobile Dropdown Styling */
    .has-dropdown .dropdown-menu {
        display: none;
        position: relative;
        /* width: 100%; */
        min-width: auto;
        padding: 10px 0;
        box-shadow: none;
        /* border-top: none;
        display: block; */
    }

    .dropdown-menu.show-mobile {
        display: block;
    }

    .dropdown-menu .dropdown-column {
        flex: 1 1 100%;
        padding: 0 20px;
    }

    .dropdown-menu .dropdown-item {
        flex: 0 0 100%;
        /* margin-right: 0;
        padding: 10px; */
        background-color: #f9f9f9;
        margin-bottom: 5px;
        border: 1px solid #eee;
    }


    .dropdown-menu.open {
        display: block;
    }
}

/* menu btn styling */
.menu-btn {
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}


/* home section styling */
body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Make the home section take full screen */
.home {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
}

/* Owl Carousel container */
.home-carousel {
    width: 100%;
    height: 100hv;
}

/* Each carousel item background image setup */
.carousel-item {
    position: relative;
    /* width: 100%; */
    /* height: 100vh; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* margin: 0;
    padding: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    object-fit: cover;
}

/* Caption styling */
.carousel-item .caption {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 80%;
}

.carousel-item .caption h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.carousel-item .caption p {
    font-size: 20px;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .carousel-item .caption h2 {
        font-size: 28px;
    }

    .carousel-item .caption p {
        font-size: 16px;
    }
}



/* about section styling */
/* Outer Background Wrapper */
.about-bg {
    background-image: url('images/home_background_image1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 20px;
}

.about {
    min-height: 200px;
    padding: 20px 10px;
    position: relative;
}

.about .max-width h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.about .max-width h2 span {
    color: #00aaff;
    font-weight: 300;
}

.underline-sky {
    display: inline-block;
    border-bottom: 3px solid #00aaff;
    padding-bottom: 1px;
}

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

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.about-content .column {
    flex: 1 1 45%;
}

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

.about-content .left img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* --- Hover State Styling (Apply the effect changes here) --- */
.about-content .left img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-content .right h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-content .right p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

/* Read More Button */
.about-content .btn {
    display: inline-block;
    background: #3293e7;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.about-content .btn:hover {
    background: coral;
}

.about .right p {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.about .right p.expanded {
    max-height: 1000px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-bg {
        background-attachment: scroll;
        padding: 60px 15px;
    }

    .about {
        padding: 30px 20px;
    }

    .about .max-width h2 {
        font-size: 1.8rem;
    }
}

/* Responsive Layout */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-content .left img {
        max-width: 130%;
        margin-bottom: 20px;
    }

    .about-content .right {
        width: 100%;
    }

    .about {
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .about-bg {
        padding: 40px 10px;
    }

    .about {
        border-radius: 8px;
        padding: 20px;
    }

    .about .max-width h2 {
        font-size: 1.5rem;
    }
}


/* about page 2 */
.about-img1 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 20px;
}

.about-text {
    padding: 20px;
}

.about-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 15px;
}

/* Responsive tweaks */
@media (min-width: 768px) {
    .about-text p {
        font-size: 1rem;
        padding: 0 50px;
    }
}


/* General styling for the new container */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    align-items: flex-start;
    padding: 40px 0;
    padding-right: 50px;
}

/* Styling for the image container */
.about-img2 {
    flex: 0 0 40%;
    max-width: 40%;
    text-align: center;
}

.about-img2 img {
    max-width: 400px;
    height: 600px;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img2 img:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

/* Responsive adjustments for smaller screens */

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-img1,
    .about-text-content {
        max-width: 90%;
    }
}

/* Styling for the text content container */
.about-text-content {
    flex: 1 1 50%;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-left: 0;
}


@media (min-width: 993px) {

    .about-text-content {
        margin-left: 20px;
    }
}

@media (max-width: 992px) {

    .about-text-content {
        max-width: 90%;
        margin: 20px auto;
        padding: 20px;

    }
}


.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 15px;
}

.accordion-collapse.show {
    max-height: 500px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.accordion-button::after {
    display: none !important;
}

.accordion-button::before {
    font-family: "Font Awesome 5 Free";
    content: "\f067";
    font-weight: 900;
    margin-right: 10px;
}

.accordion-button:not(.collapsed)::before {
    content: "\f068";
    /* margin-right: 10px; */
}

.about-text-content .accordion-item {
    border: none;
}

.about-text-content .accordion-header {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

.about-text-content .accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.about-text-content .accordion-body {
    font-size: 15px;
    line-height: 1.6;
    padding: 15px 0 25px;
}

/* --- SECTION CONTAINER --- */
.stats-section {
    padding: 60px 20px;
    /* background: #f7f7f7; */
    background: lavender;
    /* background-image: url('images/footer\ thamnail.jpg'); */
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}


/* about page-2 */
.marketing-column {
    flex: 1 1 350px;
    max-width: 450px;
    text-align: center;
}

.stars-rating i {
    color: rgb(50, 147, 231) !important;
    font-size: 24px;
    margin: 0 2px;
}

.marketing-column h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a237e;
    margin: 15px 0 30px;
}

.know-more-btn {
    display: inline-block;
    background: rgb(50, 147, 231) !important;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.know-more-btn:hover {
    background: rgb(8, 100, 182) !important;
}

.separator-line {
    width: 3px;
    height: 250px;
    background-color: #2a2a2a;
}

.stats-grid {
    flex: 1 1 400px;
    max-width: 500px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 50px;
    font-weight: 700;
    color: rgb(50, 147, 231) !important;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

@media (max-width: 992px) {
    .stats-container {
        flex-direction: column;
    }

    .marketing-column,
    .stats-grid {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .marketing-column h2 {
        font-size: 32px;
    }

    .separator-line {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
    }

    .stat-number {
        font-size: 40px;
    }
}


/* services section styling ///////////////////////*/
/* Outer Background Section */
.services-bg {
    background-image: url('images/service_background_image1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 20px;
}

.services {
    min-height: 500px;
    padding: 30px 20px 10px;
}

.services,
.teams {
    color: #000;
}

.services .max-width h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.services .max-width h2 span {
    color: #00aaff;
    font-weight: 300;
}

.underline-sky {
    display: inline-block;
    border-bottom: 3px solid #00aaff;
    padding-bottom: 5px;
}

.services .title::before,
.teams .title::before {
    background: #000;
}

.column-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.column.left-column {
    flex-basis: 40%;
}

.column.right-column {
    flex-basis: 60%;
}

/* Image responsive */
.column.left-column img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 10px;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 30px;
}

.box img {
    transition: box-shadow 0.3s ease;
    border-radius: 8px;
    background: #f1f1f1;
}

.box:hover img {
    box-shadow: 10px 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateX(-8px);
}

.box .text {
    width: 100%;
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-bg {
        background-attachment: scroll;
        padding: 60px 15px;
    }

    .services {
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {
    .column-container {
        flex-direction: column;
        text-align: center;
    }

    .column.left-column,
    .column.right-column {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .column.left-column img {
        max-width: 80%;
        margin: 0 auto 20px;
    }

    .column.right-column .text {
        font-size: 20px;
    }

    .column.right-column p {
        font-size: 15px;
        line-height: 1.6;
    }

    .services {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .services-bg {
        padding: 40px 10px;
    }

    .services {
        border-radius: 8px;
        padding: 25px 15px;
    }

    .services .max-width h2 {
        font-size: 1.5rem;
    }

    .column.left-column img {
        max-width: 100%;
    }

    .column.right-column .text {
        font-size: 18px;
    }

    .column.right-column p {
        font-size: 15px;
    }
}

/* ***** */
/* General Section */
.services1 {
    padding: 60px 20px;
    background: lavender;
    text-align: center;
}

.services1 .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
    gap: 25px;
}

.service-box1 {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    text-align: center;
}

.service-box1 img {
    width: 60px;
    margin-bottom: 15px;
}

.service-box1 h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-box1 p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.service-box1:hover {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}

@media (max-width: 768px) {
    .service-box1 {
        padding: 20px 15px;
    }

    .service-box1 h3 {
        font-size: 16px;
    }

    .service-box1 p {
        font-size: 13px;
    }
}

/* //////service section page 2 ///////////////////////*/
/* --- Base Styles --- */
/* .container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
} */

.website-dev-hero {
    min-height: 500px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 80px 150px 15px;
    /* background-color: lavender; */
    background-image: url('images/slide3.png');
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.hero-content-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    width: 100%;
}

.hero-text-side {
    flex-basis: 100%;
    padding-right: 0;
}

.hero-text-side h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 500;
    color: #fffefe;
    text-align: center;
}

.hero-illustration-side {
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration-side .tech-illustration {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.hero-illustration-side:hover .tech-illustration {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-8px) scale(1.02);
}

@media (max-width: 992px) {
    .hero-text-side h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    .hero-content-split {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-side {
        flex-basis: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero-illustration-side {
        flex-basis: 100%;
    }

    .hero-text-side h1 {
        font-size: 1.8rem;
    }

    .tech-illustration {
        max-width: 80%;
    }

}

@media (max-width: 480px) {
    .website-dev-hero {
        padding: 40px 0;
    }

    .hero-text-side h1 {
        font-size: 1.5rem;
    }
}

/* //////////////////////////Floating Button Styling ////////////////////*/
.get-in-touch {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fbc531;
    color: #000;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 12px 10px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.get-in-touch:hover {
    background-color: #e1a900;
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-text-side h1 {
        font-size: 2rem;
    }

    .get-in-touch {
        font-size: 14px;
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .get-in-touch {
        right: 5px;
    }
}

/*////////////////////// Popup Overlay ///////////////////*/
/* .contact-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 2000;
} */
.contact-popup {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
}

/* Active class to show popup */
.contact-popup.active {
    display: flex;
}

/* Popup Content */
.contact-popup-content {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    max-width: 800px;
    width: 90%;
    position: relative;
    animation: popupFade 0.4s ease;
}

/* Left Section */
.popup-left {
    flex: 1 1 50%;
    background: #007bff;
    color: #fff;
    padding: 40px 30px;
    text-align: left;
}

.popup-left img {
    max-width: 100%;
    margin-top: 20px;
    max-width: 270px;
    /* height: 300px; */
}

.popup-right {
    flex: 1 1 50%;
    padding: 40px 30px;
}

.popup-right form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-right input,
.popup-right textarea {
    margin-bottom: 15px;
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 15px;
}

.popup-right button {
    background: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.popup-right button:hover {
    background: #0056b3;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #333;
    cursor: pointer;
}

/* Animation */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-popup-content {
        flex-direction: column;
    }

    .popup-left,
    .popup-right {
        flex: 1 1 100%;
    }

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

/* Basic styling ///////////////////*/
body {
    font-family: 'Poppins', sans-serif;
    /* background-color: #f9fafc; */
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: #333;
}

/* Section box styling */
.company-section {
    background-image: url('images/background_image1_for_services_page.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 50px;
}

.content-box {
    background: #fff;
    padding: 40px 50px;
    max-width: 900px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.content-box p {
    margin-bottom: 18px;
    font-size: 16px;
}

.highlight {
    color: #1a56db;
    font-weight: 700;
}

strong {
    color: #333;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .company-section {
        background-attachment: scroll;
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .content-box {
        padding: 30px 25px;
        max-width: 90%;
    }

    .hero-illustration-side img {
        width: 300px;
    }
}

@media (max-width: 600px) {
    .company-section {
        padding: 40px 15px;
        background-size: cover;
    }

    .content-box {
        padding: 20px;
        border-radius: 8px;
    }

    .content-box p {
        font-size: 15px;
    }

    .hero-illustration-side img {
        width: 100%;
        max-width: 280px;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .content-box {
        padding: 25px 20px;
    }

    .content-box p {
        font-size: 15px;
    }
}

/* General Styling ////////////////////////*/
/* body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8;
} */

/* Full-Width Background Wrapper */
.company-features-bg {
    background-image: url('images/background_image2_for_services_page.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 60px 20px;
}

.company-features-section {
    display: flex;
    max-width: 1200px;
    margin: 10px auto;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    border-radius: 8px;
    /* overflow: hidden; */
    position: relative;
    overflow: hidden;
}

/* 1a. Left Content Area */
.main-content {
    flex: 3;
    padding: 10px 70px 10px;
}

.main-content h1 {
    color: #002244;
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 30px;
}

.feature-item {
    margin-bottom: 25px;
    border-left: 3px solid #007bff;
    padding-left: 15px;
}

.feature-item h2 {
    color: #002244;
    font-size: 1.5em;
    /* font-weight: bold; */
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.95em;
}


/* 2. Responsiveness (Media Query) */
@media (max-width: 1024px) {
    .company-features-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .company-features-section {
        flex-direction: column;
        padding: 0;
    }

    .main-content {
        padding: 20px;
        flex: auto;
    }

    .company-features-bg {
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        padding: 40px 15px;
    }
}

/* Our Approach:////////////////////////////////// */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    color: #333;
    line-height: 1.6;
}

.approach-bg {
    background-image: url('images/background_image3_for_services_page.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-section1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.content-box1 {
    flex: 1;
}

.content-box1 h2 {
    color: #1a56db;
    font-size: 24px;
    margin-bottom: 25px;
}

.approach-item {
    margin-bottom: 25px;
}

.approach-item h3 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.approach-item p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .approach-bg {
        background-attachment: scroll;
        padding: 60px 20px;
    }

    .company-section1 {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .company-section1 {
        padding: 30px 20px;
        text-align: left;
    }

    .content-box1 h2 {
        font-size: 22px;
    }

    .approach-item h3 {
        font-size: 16px;
    }

    .approach-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .approach-bg {
        padding: 40px 15px;
    }

    .company-section1 {
        border-radius: 8px;
        padding: 25px 18px;
    }
}

/* /////////////chooseus-bg/////////////// */
/* Full-width Background Wrapper */
.chooseus-bg {
    background-image: url('images/background_image3_for_services_page.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.chooseus-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.25); */
    z-index: 0;
}

.chooseus-bg>* {
    position: relative;
    z-index: 1;
}

.company-section1 {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    max-width: 1200px;
    width: 100%;
    padding: 50px 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: auto;
    position: relative;
    flex-direction: column;
}

.content-box1 h2 {
    color: #1a56db;
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: 700;
}

.approach-item ul {
    list-style-type: disc;
    margin-left: 25px;
    padding-left: 0;
}

.approach-item li {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .chooseus-bg {
        background-attachment: scroll;
        padding: 60px 20px;
    }

    .company-section1 {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .company-section1 {
        padding: 30px 20px;
        text-align: left;
    }

    .content-box1 h2 {
        font-size: 22px;
    }

    .approach-item li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .chooseus-bg {
        padding: 40px 15px;
    }

    .company-section1 {
        border-radius: 8px;
        padding: 25px 18px;
    }

    .content-box1 h2 {
        font-size: 20px;
    }
}

/* Tools and Technologies//////////////////////////// */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
    color: #333;
}

.tools-section {
    text-align: center;
    padding: 40px 20px;
}

.tools-section h2 {
    color: #1a56db;
    font-size: 28px;
    margin-bottom: 30px;
}

/* Carousel Container */
.carousel-container {
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 1s ease-in-out;
    /* scroll-behavior: smooth; */
    will-change: transform;
}

.tool-card {
    flex: 0 0 20%;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 30px;
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    /* transition: transform 0.3s; */
}

.tool-card img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.tool-card:hover img {
    transform: scale(1.05);
}

/* Dots Navigation */
.carousel-dots {
    /* text-align: center; */
    margin-top: 15px;
}

.dot {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: #1a56db;
}

/* Responsive */
@media (max-width: 992px) {
    .tool-card {
        flex: 0 0 33.33%;
    }
}

@media (max-width: 600px) {
    .tool-card {
        flex: 0 0 50%;
    }

    .tool-card img {
        max-width: 90px;
    }
}

/* specialized-services///////////////////// */
/* Base Styles */
.specialized-services {
    padding: 20px;
}

.specialized-services h2 {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 150px;
    color: #1a56db;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}

.service-card:hover img {
    transform: scale(1.05);
}

.learn-more-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #0056b3;
}

@media (min-width: 600px) {
    .services-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .service-card {
        width: calc(50% - 10px);
    }
}

@media (min-width: 1024px) {
    .services-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .service-card {
        width: calc(25% - 15px);
    }
}

@media (min-width: 1024px) {
    .specialized-services h2 {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        text-align: left;
    }
}

/* ///////////////////////////////////////// */
/* QA & Testing Section */
.offers-bg {
    background-image: url('images/background_image2_for_services_page.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.offers-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.25); */
    z-index: 0;
}

.offers-bg>* {
    position: relative;
    z-index: 1;
}

.company-section2 {
    padding: 60px 8%;
    /* background: #ffffff; */
    font-family: "Poppins", sans-serif;
}

.company-section2 h1 {
    text-align: center;
    font-size: 2rem;
    color: #013d79;
    margin-bottom: 40px;
    font-weight: 600;
    gap: 10px;
}

/* Grid layout: 2 columns on large, 1 column on mobile */
.content-box2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.approach-item1 {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px 25px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.approach-item1:hover {
    background: #eef5ff;
    transform: translateY(-3px);
}

.approach-item1 h2 {
    color: #013d79;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.approach-item1 ul {
    list-style: disc;
    margin-left: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
    color: #333;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .offers-bg {
        background-attachment: scroll;
        padding: 60px 20px;
    }

    .company-section2 {
        padding: 50px 30px;
    }
}

/* Responsive for Tablets and Mobiles */
@media (max-width: 768px) {
    .content-box2 {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 10px;
    }

    .company-section2 h1 {
        font-size: 1.8rem;
    }

    .approach-item h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .offers-bg {
        padding: 40px 15px;
    }

    .company-section2 {
        padding: 40px 5%;
        border-radius: 8px;
    }

    .company-section2 h1 {
        font-size: 1.5rem;
    }

    .approach-item h2 {
        font-size: 1rem;
    }

    .approach-item ul {
        font-size: 0.9rem;
    }
}

/* contact-banner////////////////////////////// */
/* Basic Reset/Setup */
body {
    margin: 0;
    padding: 0;
}

/* --- Section Container Styles --- */
.contact-section {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    min-height: 250px;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: #0d1a49;
    background-image: url('images/contact_container_img1.png');
    background-size: cover;
    background-position: center;

    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    color: white;
}

.contact-text p {
    font-size: 2.5em;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    background: linear-gradient(90deg, #b3a0f5, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info {
    text-align: right;
    border-left: 3px solid #fff;
    padding-left: 30px;
}

.call-text {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.9em;
    opacity: 0.8;
}

.call-text i {
    text-align: center;
    font-size: 50px;
    margin-right: 8px;
    color: #4dc2f4;
}

.phone-number {
    display: block;
    font-size: 2em;
    font-weight: 700;
    color: #4dc2f4;
    text-decoration: none;
    margin: 5px 0 15px 0;
}

.call-text {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.call-text a i {
    font-size: 28px;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.call-text a i:hover {
    opacity: 1;
    color: #4dc2f4;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }

    .contact-text p {
        font-size: 1.8em;
        margin-bottom: 20px;
        -webkit-text-fill-color: white;
        background: none;
    }

    .contact-info {
        text-align: center;
    }

    .call-text {
        justify-content: center;
    }

    .phone-number {
        font-size: 1.6em;
    }

    .call-text {
        justify-content: center;
        margin-top: 10px;
    }
}

/* /////////skills section styling //////////////////////////*/
/* Section Styling */
.tech-skills {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.tech-skills .section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
}

.tech-skills .section-title span {
    border-bottom: 3px solid#00aaff;
    padding-bottom: 5px;
    color: #00aaff;
}

/* Grid Layout */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
}

.tech-item {
    text-align: center;
    opacity: 0;
    transform: translateY(100px);
    transition: all 1.5s ease-out;
}

.tech-item.show {
    opacity: 1;
    transform: translateY(0);
}

.tech-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.tech-item p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.tech-item:hover img {
    transform: scale(1.2);
}

.tech-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* our portfolio section styling///////////////////// */

.protfolio {
    position: relative;
    min-height: 500px;
    padding: 60px 10px 60px;
    background-image: url('images/protfolio_image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* color: #000; */
    z-index: 1;
    font-family: "Poppins", sans-serif;
}

.protfolio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.4); */
    z-index: -1;
}

.protfolio1 {
    position: relative;
    /* z-index: 2; */
}

.protfolio1 h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.protfolio1 h2 span {
    color: #00aaff;
    font-weight: 300;
}

.underline-sky {
    display: inline-block;
    border-bottom: 3px solid #00aaff;
    padding-bottom: 5px;
}

.column-left {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    padding-left: 40px;
}

.card {
    /* width: calc((100% - 40px) / 3); */
    box-sizing: border-box;
    width: 350px;
    overflow: hidden;
    position: relative;
}

.box {
    position: relative;
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-bottom: 3px solid #00aaff;
}

.text1 {
    background: #cfdffb;
    color: #111;
    width: 290px;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 15px;
    border-radius: 12px 12px 12px 12px;
}

.text1 a {
    color: #0077cc;
    text-decoration: none;
    transition: color 0.3s;
}

.text1 a:hover {
    color: #004c99;
    text-decoration: underline;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .card {
        width: 100%;
    }

    .card img {
        height: 200px;
    }

    .text1 {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .protfolio {
        background-attachment: scroll;
        background-position: center;
    }
}

/* /////////////////////our client /////////////////////// */
.our-client {
    min-height: 300px;
    /* padding: 40px 20px; */
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 20px 10px 8px;
    position: relative;
    background: lavender;
    text-align: center;
}

.serv-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 20px;
    padding: 10px;
    box-sizing: border-box;
}


.our-client h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.our-client h2 span {
    color: #00aaff;
    font-weight: 300;
}

.underline-sky {
    display: inline-block;
    border-bottom: 3px solid #00aaff;
    padding-bottom: 5px;
}

.box1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 40px;
}

.box1 img {
    transition: box-shadow 0.3s ease;
    border-radius: 8px;
    background: #f1f1f1;
}

.box1:hover img {
    box-shadow: 10px 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateX(-8px);
}


.hero-text-side1 {
    flex-basis: 100%;
    /* padding-left: 500px; */
    text-align: center;
}

.hero-text-side1 h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
}

.hero-text-side1 p {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-text-side1 h1 {
        font-size: 2rem;
    }

    .hero-text-side1 p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text-side1 h1 {
        font-size: 1.6rem;
    }

    .hero-text-side1 p {
        font-size: 0.95rem;
    }
}


.client-slider {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.client-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollClients 20s linear infinite;
}

.box1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.box1 img {
    width: 150px;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: .3s;
    background: #fff;
    border-radius: 8px;
    padding: 1px;
}

.box1 img:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

@keyframes scrollClients {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media(max-width: 768px) {
    .box1 img {
        width: 120px;
    }

    .client-track {
        gap: 25px;
        animation-duration: 15s;
    }
}

@media(max-width: 480px) {
    .box1 img {
        width: 90px;
    }

    .client-track {
        gap: 15px;
        animation-duration: 12s;
    }
}

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

.client-slider:hover .client-track {
    animation-play-state: paused;
}

/* /////////////////////// courses_section//////////////////////////////*/
.courses-section {
    position: relative;
    background-image: url('images/home_background_image1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 50px 5%;
    /* background: #fff; */
    z-index: 1;
    font-family: "Poppins", sans-serif;
}

.courses-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.5); */
    z-index: -1;
}

.courses-section .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.course-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.course-image {
    height: 180px;
    color: #fff;
    padding: 15px;
    border-radius: 16px 16px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-image h4 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.course-image img {
    width: 80px;
    align-self: flex-start;
}

.image-row {
    display: flex;
    /* Arrange images in a row */
    justify-content: left;
    /* Center align horizontally */
    align-items: center;
    /* Align vertically */
    /* gap: 10px; */
    /* Space between images */
}

.image-row img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    /* Keeps image proportion */
    border-radius: 8px;
    /* background: white; */
    padding: 5px;
}

/* Background gradients */
.php-bg {
    background: linear-gradient(135deg, #a97fff, #7b5eff);
}

.html-bg {
    background: linear-gradient(135deg, #00bcd4, #008394);
}

.java-bg {
    background: linear-gradient(135deg, #ffd54f, #f9a825);
    color: #000;
}

.angular-bg {
    background: linear-gradient(135deg, #ff7a7a, #e53935);
}

.react-bg {
    background: linear-gradient(135deg, #80deea, #26c6da);
}

.fullstack-bg {
    background: linear-gradient(135deg, #7b5eff, #5a33cc);
}

.course-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px;
}

.price {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 15px;
    color: #111;
}

.course-card p {
    margin: 10px 15px 20px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .course-image {
        height: 150px;
    }

    .course-image img {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .courses-section {
        background-attachment: scroll;
        background-position: center;
    }
}

/* contact section styling /////////////////////*/
.contact {
    min-height: 400px;
    padding: 60px 10px 60px;
}

.contact .title::after {
    content: "";
}

.contact .max-width h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact .max-width h2 span {
    color: #00aaff;
    font-weight: 300;
}

.underline-sky {
    display: inline-block;
    border-bottom: 3px solid #00aaff;
    padding-bottom: 5px;
}

.contact .contact-content .column {
    width: calc(50% - 30px);
}

.contact .contact-content .text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .contact-content .left p {
    text-align: justify;
}

.contact .contact-content .left .icons {
    margin: 10px 0;
}

.contact .contact-content .row {
    display: flex;
    height: 65px;
    align-items: center;
}

.contact .contact-content .row .info {
    margin-left: 30px;
}

.contact .contact-content .row i {
    font-size: 25px;
    color: #00aaff;
}

.contact .contact-content .info .head {
    font-weight: 500;
}

.contact .contact-content .info .sub-title {
    color: #333;
}

.contact .right form .fields {
    display: flex;
}

.contact .right form .field,
.contact .right form .fields .field {
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}

.contact .right form .textarea {
    height: 80px;
    width: 100%;
}

.contact .right form .name {
    margin-right: 10px;
}

.contact .right form .field input,
.contact .right form .textarea textarea {
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus {
    border-color: #b3b3b3;
}

.contact .right form .textarea textarea {
    padding-top: 10px;
    resize: none;
}

.contact .right form .button-area {
    display: flex;
    align-items: center;
}

.right form .button-area button {
    color: #fff;
    display: block;
    width: 160px !important;
    height: 45px;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    flex-wrap: nowrap;
    background: #00aaff;
    border: 2px solid #00aaff;
    transition: all 0.3s ease;
}

.right form .button-area button:hover {
    color: #00aaff;
    background: none;
}

.map-container iframe {
    width: 400px;
    height: 250px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* Social icons box style */
.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-left: 8px;
    padding-left: 1px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    border-radius: 50%;
    /* 50% = circle */
    background: #fff;
    color: rgb(50, 147, 231);
    transition: 0.3s;
}

.social-links a:hover {
    background: rgb(254, 153, 116);
    color: #000;
}


/* === WhatsApp Floating Button === /////////////////////////*/
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* === Responsive adjustments === */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }

}

/* ///////////// Scroll Up Button //////////// */
.scroll-up-btn {
    position: fixed;
    height: 45px;
    width: 42px;
    background: #00aaff;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* When visible */
.scroll-up-btn.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}

/* Hover effect */
.scroll-up-btn:hover {
    filter: brightness(90%);
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */

/* Tablets (width ≤ 992px) */
@media (max-width: 992px) {
    .scroll-up-btn {
        right: 20px;
        bottom: 15px;
        height: 40px;
        width: 38px;
        line-height: 40px;
        font-size: 26px;
    }
}

/* Mobile Landscape (width ≤ 768px) */
@media (max-width: 768px) {
    .scroll-up-btn {
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        line-height: 38px;
        font-size: 24px;
    }
}

/* Mobile Portrait (width ≤ 480px) */
@media (max-width: 480px) {
    .scroll-up-btn {
        right: 10px;
        bottom: 12px;
        height: 35px;
        width: 32px;
        line-height: 35px;
        font-size: 22px;
    }
}


/* footer section styling */
footer {
    background: rgb(13, 124, 220);
    padding: 15px 23px;
    color: #fff;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
}

footer span a:hover {
    text-decoration: underline;
}


/* responsive media query start */
@media (max-width: 768px) {
    .home-carousel .caption h2 {
        font-size: 28px;
    }

    .home-carousel .caption p {
        font-size: 16px;
    }
}

/* Animation keyframes */
@keyframes slideFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Base styles for caption */
.caption {
    opacity: 0;
    /* Start hidden */
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-delay: 0.3s;
}

/* Optional: Animate only when item is active */
.carousel-item.active .caption {
    animation-name: slideFromBottom, slideFromLeft;
}



@media (max-width: 1104px) {
    .about .about-content .left img {
        height: 350px;
        width: 350px;
    }
}

@media (max-width: 991px) {
    .max-width {
        padding: 0 50px;
    }
}

@media (max-width: 947px) {
    .menu-btn {
        display: block;
        z-index: 999;
    }

    .menu-btn i.active:before {
        content: "\f00d";
    }

    .navbar .menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }

    .navbar .menu.active {
        left: 0;
    }

    .navbar .menu li {
        display: block;
    }

    .navbar .menu li a {
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }

    .home .home-content .text-2 {
        font-size: 70px;
    }

    .home .home-content .text-3 {
        font-size: 35px;
    }

    .home .home-content a {
        font-size: 23px;
        padding: 10px 30px;
    }

    .max-width {
        max-width: 930px;
    }

    .about .about-content .column {
        width: 100%;
    }

    .about .about-content .left {
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }

    .about .about-content .right {
        flex: 100%;
    }

    .services .serv-content .card {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }

    .skills .skills-content .column,
    .contact .contact-content .column {
        width: 100%;
        margin-bottom: 35px;
    }
}

@media (max-width: 690px) {
    .max-width {
        padding: 0 23px;
    }

    .home .home-content .text-2 {
        font-size: 60px;
    }

    .home .home-content .text-3 {
        font-size: 32px;
    }

    .home .home-content a {
        font-size: 20px;
    }

    .services .serv-content .card {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .home .home-content .text-2 {
        font-size: 50px;
    }

    .home .home-content .text-3 {
        font-size: 27px;
    }

    .about .about-content .right .text,
    .skills .skills-content .left .text {
        font-size: 19px;
    }

    .contact .right form .fields {
        flex-direction: column;
    }

    .contact .right form .name,
    .contact .right form .email {
        margin: 0;
    }

    .right form .error-box {
        width: 150px;
    }

    .scroll-up-btn {
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
}