/*!
 * Theme Name: Peregrine Design
 * Theme URI: http://example.com
 * Author: Your Name
 * Author URI: http://example.com
 * Description: A modern creative agency theme with award-winning design
 * Version: 1.0.0
 * License: GPL v2 or later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: peregrine-design
 * Domain Path: /languages
 * Requires at least: 5.0
 * Tested up to: 6.4
 * Requires PHP: 7.4   
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E00A15;
    --primary-blue: #2E8DBE;
    --light-blue: #5BA3D0;
    --dark-text: #333333;
    --light-text: #666666;
    --white: #FFFFFF;
    --light-gray: #F8F8F8;
}

html, body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    color: var(--light-text);
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-blue);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 13px 32px;
    font-size: 11px;
    font-weight: 700;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #E00A15;
    color: var(--white);
}

.btn-primary:hover {
    background: #E00A15;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 45, 52, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
}

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    position: relative;
    z-index: 100;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);*/
}

.header-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 80px;
    width: auto;
    display: block;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--dark-text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-red);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}



.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    background: #E00A15;
    color: var(--white);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    border-radius: 25px;
}

.badge:hover {
    background: #E00A15;
    transform: scale(1.05);
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 101;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Show nav on desktop */
.main-nav {
    /* display: flex !important; */
    margin-left: 29%;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 45px;
}

.main-nav a {
    color: var(--dark-text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none !important;
    }

    .main-nav.active {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
}

/* Slide Menu Toggle Button */
.slide-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 102;
    transition: opacity 0.3s ease;
}

.slide-menu-toggle.active {
    opacity: 0;
    pointer-events: none;
}

.slide-menu-toggle span {
    width: 32px;
    height: 2px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

/* Slide Menu */
.slide-menu {
    position: fixed;
    left: 100%;
    top: 0;
    width: 50%;
    height: 100vh;
    background: #E00A15;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 101;
    transition: left 0.4s ease;
    padding-top: 80px;
    overflow-y: auto;
}

.slide-menu.active {
    left: 50%;
}

.slide-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--white);
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.slide-menu-close:hover {
    color: #CCCCCC;
}

.slide-nav {
    display: flex;
    flex-direction: column;
}

.slide-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.slide-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-nav a {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 20px 30px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.slide-nav a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--white);
    padding-left: 40px;
}

@media (max-width: 768px) {
    .slide-menu-toggle {
        display: flex;
    }

    .header-actions {
        gap: 15px;
    }

    .slide-menu {
        width: 100%;
        left: -100%;
    }
}

/* Hero Section */
.hero {
    background: var(--white);
    padding: 60px 0 0 0;
    color: var(--dark-text);
    position: relative;
    overflow: visible;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    padding: 60px 0;
    z-index: 2;
    text-align: left;
    order: 1;
    flex: 1;
}

.hero-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    margin-bottom: 20px;
    margin-right: 10px;
}

/*.container.heross {*/
/*    max-width: 1380px !important;*/
/*}*/

.hero-text h1,
.hero-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--dark-text);
    font-family: lemon milk;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--light-text);
    line-height: 1.7;
    text-align: left;
    font-family: lemon milk;
}

.hero-image {
    position: relative;
    /* height: 550px; */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    order: 2;
    flex: 1;
}

.hero-images-container {
    position: relative;
    width: 320px;
    height: 480px;
    background: var(--primary-red);
    border-radius: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 45, 52, 0.4);
    overflow: visible;
}

.hero-image-circle {
    position: absolute;
    width: 140px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-image-circle:nth-child(1) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 150px;
    z-index: 3;
}

.hero-image-circle:nth-child(2) {
    top: 80px;
    left: 15%;
    width: 150px;
    height: 170px;
    z-index: 2;
}

.hero-image-circle:nth-child(3) {
    top: 80px;
    right: 15%;
    width: 150px;
    height: 170px;
    z-index: 2;
}

.hero-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */

p.contact-body-text {
    font-family: LEMON MILK;
    FONT-SIZE: 19px;
}

.about {
    color: var(--white);
    padding: 100px 0 0 0;
    position: relative;
    margin-top: 0;
    background-image: url(https://peregrineinfotech.com/wp-content/uploads/2026/05/Group-20694.png);
}

/* Desktop view - old design with red background */
@media (min-width: 768px) {
    /*.about {*/
    /*    background: var(--primary-red);*/
    /*    background-image: none;*/
    /*}*/
}


h3.about-text {
    font-weight: 100;
    line-height: 1.5;
    font-family: lemon milk;
    text-transform: uppercase;
}


.about-container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Responsive view - add grid display */
@media (max-width: 767px) {
    .about-container {
        display: grid;
    }
}

.about-text {
    max-width: 100%;
}

.about-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    /*letter-spacing: 3px;*/
    margin-bottom: 30px;
    opacity: 1;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-title::before {
    content: '—';
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2rem;
}

.about h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.about p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    font-size: 1.95rem;
    line-height: 1.8;
    font-family: lemon milk;
}

.about-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 4rem;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Technologies Section */
.technologies {
    padding: 80px 0;
    background: var(--light-gray);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    color: var(--dark-text);
    text-transform: uppercase;
    font-family:lemon milk;
}

.tech-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
}

.tech-slider {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
}

.tech-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    text-align: center;
    transition: transform 0.5s ease-in-out;
    width: auto;
}

.tech-item {
    min-width: calc((100% - 90px) / 4);
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    /* border: 2px solid #e0e0e0; */
    border: 8px solid var(--primary-red);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 calc((100% - 90px) / 4);
}

.tech-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 20px rgba(224, 10, 21, 0.15);
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
    text-align: left;
}

.tech-item:hover .tech-icon {
    transform: scale(1.15);
}

.tech-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.tech-item:hover .tech-icon-img {
    transform: scale(1.1);
}

.tech-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-text);
    font-family: lemon milk;
    font-weight: bolder;
    line-height: 1.4;
    /* min-height: 2rem; */
}

.tech-item:hover h4 {
    color: var(--primary-red);
}

.tech-item p {
    color: var(--light-text);
    font-family: lemon milk;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Slider Navigation Buttons */
.tech-slider-btn {
    display: none;
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-red);
    background: white;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tech-slider-btn:hover {
    background: var(--primary-red);
    color: white;
}

.tech-slider-btn span {
    font-weight: bold;
}

.tech-slider-prev {
    order: -1;
}

.tech-slider-next {
    order: 1;
}

/* Featured Work Section */
.featured-work {
     padding: 80px 0px; 
    max-width: 100%;
    margin: 0 auto;
}

.featured-work .section-title {
    margin-bottom: 17px;
}

p.about-section {
    text-align: center;
    font-size: 1.0rem;
}
.work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 100px;
}

.work-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-item:nth-child(1) {
    grid-template-columns: 1fr 1fr;
}

.work-item:nth-child(1) .work-image {
    order: 1;
}

.work-item:nth-child(1) .work-content {
    order: 2;
    padding-right: 80px;
}

.work-item:nth-child(2) {
    grid-template-columns: 1fr 1fr;
}

.work-item:nth-child(2) .work-image {
    order: 2;
}

.work-item:nth-child(2) .work-content {
    order: 1;
    padding-left: 120px;
}

.work-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    order: 1;
}

.work-content {
    padding: 0;
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    position: relative;
}

.work-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    color: var(--dark-text);
    padding: 0;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    position: relative;
    padding-top: 0;
    margin-top: 50px;
    order: -1;
}

.work-item:nth-child(1) .work-tag {
    margin-left: -165px;;
    width: fit-content;
}

.work-item:nth-child(2) .work-tag {
    margin-left: auto;
    margin-right: -150px;
    width: fit-content;
    flex-direction: row-reverse;
}

.work-tag::before {
    content: '';
    display: block;
    min-width: 40px;
    width: 40px;
    height: 2px;
    background: var(--dark-text);
    flex-shrink: 0;
}

.work-item h3 {
    margin: 0;
    color: var(--dark-text);
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
}

.work-item p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    color: var(--light-text);
    text-align: left;
}

.work-link {
    display: inline-block;
    color: #262121 !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    /*letter-spacing: 1px;*/
    padding-left: 50px;
}

/* Statistics Section */
.statistics {
    background: var(--white);
    padding: 80px 0;
}

.statistics-header {
    margin-bottom: 50px;
}

.statistics-subtitle {
    color: #E00A15 !important;
    font-weight: 600;
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
    font-size: 0.85rem;
    padding-bottom: 40px;
    text-align: center;
}

.statistics-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.statistics-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.statistics-left h3 {
    font-size: 23px;
    line-height: 1.6;
    color: var(--dark-text)#333333;
    font-family: lemon milk;
}

/*.statistics-image {*/
/*    width: 100%;*/
/*    height: 300px;*/
/*    border-radius: 8px;*/
/*    overflow: hidden;*/
/*    background: var(--light-gray);*/
/*}*/

.footer-social a {
    color: #ffffff;
    margin-right: 15px;
    font-size: 18px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #0077b5; /* change if needed */
}
h2.whyus {
    text-align: center;
    margin-bottom: 20px;
}

.statistics-image img {
    width: 85%;
    height: 83%;
    object-fit: cover;
}

.statistics-right {
    width: 100%;
    margin-bottom: 45px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
    text-align: left;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #E00A15 !important;
    margin: 0;
    line-height: 1;
}

.stat-item p {
    font-size: 20px;
    /*text-transform: uppercase;*/
    letter-spacing: 0.5px;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
    font-family: lemon milk;
}

.stat-item small {
    font-size: 0.8rem;
    color: var(--light-text);
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    background: var(--light-gray);
    padding: 80px 0;
    text-align: center;
}
.d-none {
    display: none !important;
}

.testimonials-label {
    color: black;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 30px;
    margin-bottom: 30px;
}

.testimonials-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -8px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    margin: -8px 0 0 -8px;
    border: 3px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonials-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.testimonial-quote {
    margin: 0 0 30px 0;
}

.testimonial-quote p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--dark-text);
    font-style: italic;
}

.testimonial-author {
    margin-bottom: 30px;
}

.testimonial-author h4 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-red);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.nav-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    transform: scale(1.1);
}

/* Testimonials Responsive Design */
@media (max-width: 1024px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-label {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .testimonials-content {
        max-width: 700px;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .testimonial-author h4 {
        font-size: 1rem;
    }
    
    .nav-btn {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 50px 20px;
    }
    
    .testimonials-label {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .testimonials-content {
        max-width: 100%;
        padding: 25px;
        min-height: 280px;
    }
    
    .testimonial-quote {
        margin-bottom: 20px;
    }
    
    .testimonial-quote p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--dark-text);
    }
    
    .testimonial-author {
        margin-bottom: 20px;
    }
    
    .testimonial-author h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .testimonial-author p {
        font-size: 0.8rem;
    }
    
    .testimonial-nav {
        gap: 10px;
        margin-top: 20px;
    }
    
    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-width: 1.5px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 15px;
    }
    
    .testimonials-label {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .testimonials-content {
        max-width: 100%;
        padding: 20px;
        min-height: 260px;
    }
    
    .testimonial-quote {
        margin-bottom: 15px;
    }
    
    .testimonial-quote p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .testimonial-author {
        margin-bottom: 15px;
    }
    
    .testimonial-author h4 {
        font-size: 0.85rem;
        margin-bottom: 3px;
    }
    
    .testimonial-author p {
        font-size: 0.75rem;
    }
    
    .testimonial-nav {
        gap: 8px;
        margin-top: 15px;
    }
    
    .nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* Team Section */
.team {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.team .section-title {
    margin-bottom: 30px;
}

.team-description {
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--light-text);
}

.team-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    margin: -10px 0 0 -10px;
    border: 3px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
}

.avatar:first-child {
    margin-left: 0;
}

/* Contact Section */
.contact {
    background: var(--white);
    position: relative;
    overflow: visible;
}

i.fa{
    color: #E00A15;
}

.contact-header {
    text-align: center;
    /*margin-bottom: 60px;*/
    font-family:lemon milk;
}

.contact-header h2 {
    font-size: 30px;
    color: var(--dark-text);
    /*margin: 0px 150px 0px 0;*/
    line-height: 1.3;
    text-transform: uppercase;
}

.contact .section-title {
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--dark-text);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    font-family: inherit;
    font-size: 0.95rem;
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}







.submit-arrow {
    font-size: 1.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.info-icon {
    color: var(--primary-red);
    font-size: 1rem;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /*margin-top: 150px;*/
    margin-left: 150px;
    position: relative;
    height: auto;
}

.contact-text {
    padding-top: 40px;
}

.contact-text p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--dark-text);
    font-weight: 500;
}

.contact-image {
    position: relative;
    /*margin-bottom: -200px;*/
    z-index: 10;
    overflow: visible;
    margin-bottom: -80px;
}

.contact-image img {
    /* width: 100%; */
    height: auto;
    display: block;
}

/* Thank You Message */
.thank-you-message {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-content {
    text-align: center;
    padding: 40px;
    background: #f0f4f8;
    border-radius: 8px;
}

.thank-you-icon {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-content h3 {
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-weight: 700;
}

.thank-you-content p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 10px;
    line-height: 1.6;
}

.thank-you-subtext {
    font-size: 0.9rem;
    color: #888;
    margin-top: 15px;
}

/* Footer */
footer {
    background: var(--primary-red);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footer-logo-img {
    max-width: 60%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--white);
}

.logo-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-description {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-family: lemon milk;
}

.footer-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    justify-self: end;
    align-self: flex-end;
    font-family: lemon milk;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    background: #E00A15 !important;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--white);
}

.footer-social span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive */
@media (max-width: 480px) {
    .hero-content,
    .about-container,
    .work-grid,
    .stats-grid,
    .contact-content,
    .footer-content,
    .footer-right,
    .statistics-content {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        gap: 40px;
    }
    
    .footer-right {
        justify-self: start !important;
    }

    .statistics-content {
        gap: 40px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image {
        height: 300px;
    }

    .hero-image {
        height: 400px;
    }

    .hero-images-container {
        width: 240px;
        height: 380px;
        border-radius: 120px;
    }

    .hero-image-circle {
        width: 110px;
        height: 130px;
    }

    .hero-image-circle:nth-child(1) {
        width: 100px;
        height: 120px;
    }

    .hero-image-circle:nth-child(2),
    .hero-image-circle:nth-child(3) {
        width: 110px;
        height: 130px;
    }
}

@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }
}

/* About Us Page Styles */
.about-hero {
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.about-hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
}

.about-hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family : lemon milk;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    padding: 80px 0;
}

.about-intro {
    text-align: center;
    margin-bottom: 80px;
}

.about-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: uppercase;
    font-family: lemon milk;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto;
    font-family: lemon milk;
}

.about-section {
    margin-bottom: 80px;
}

.section-content {
    background: var(--light-gray);
    padding: 60px 40px;
    border-radius: 8px;
}

.section-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-text);
    font-weight: 700;
    font-family: lemon milk;
}

.section-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 0;
    font-family: lemon milk;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.value-item {
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-text);
    font-weight: 700;
    font-family: lemon milk;
}

.value-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--light-text);
    margin: 0;
    font-family: lemon milk;
}

.expertise-list {
    list-style: none;
    margin-top: 20px;
}

.expertise-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    color: var(--light-text);
    font-family: lemon milk;
}

.expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.1rem;
}


.expertise-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--light-gray);
    padding: 60px 40px;
    border-radius: 8px;
}

/* Tablet Responsive - About Us Page */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .expertise-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .about-intro h1 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 18px;
    }

    .section-content h2 {
        font-size: 1.5rem;
    }

    .section-content p {
        font-size: 16px;
    }
}

/* Mobile Responsive - About Us Page (480px - 767px) */
@media (max-width: 767px) {
    .about-hero {
        height: 350px;
    }

    .about-hero-overlay h1 {
        font-size: 2rem;
    }

    .about-intro {
        margin-bottom: 50px;
    }

    .about-intro h1 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .intro-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .section-content {
        padding: 40px 30px;
    }

    .section-content h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .section-content p {
        font-size: 15px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 20px;
    }

    .value-item {
        padding: 25px;
    }

    .value-item h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .value-item p {
        font-size: 15px;
        line-height: 1.5;
    }

    .expertise-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }

    .expertise-list li {
        font-size: 16px;
        padding-left: 25px;
    }

    .expertise-list li::before {
        font-size: 1rem;
    }

    .expertise-certificate img {
        max-width: 80%;
    }

    .closing-section-content p {
        font-size: 16px;
    }

    .cta-section .section-content {
        padding: 40px 30px;
    }
}

/* Small Mobile Responsive - About Us Page (below 480px) */
@media (max-width: 479px) {
    .about-hero {
        height: 280px;
    }

    .about-hero-overlay h1 {
        font-size: 1.5rem;
    }

    .about-intro h1 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .intro-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .section-content {
        padding: 30px 20px;
    }

    .section-content h2 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .section-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-item {
        padding: 20px;
    }

    .value-item h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .value-item p {
        font-size: 14px;
        line-height: 1.4;
    }

    .expertise-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 20px;
    }

    .expertise-list {
        margin-top: 15px;
    }

    .expertise-list li {
        font-size: 14px;
        padding: 10px 0;
        padding-left: 22px;
    }

    .expertise-list li::before {
        font-size: 0.9rem;
    }

    .expertise-certificate img {
        max-width: 70%;
    }

    .closing-section-content p {
        font-size: 14px;
    }

    .cta-section .section-content {
        padding: 30px 20px;
    }
}

.expertise-certificate {
    display: flex;
    justify-content: center;
    align-items: center;
}

.expertise-certificate img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, #cc0810 100%);
    color: var(--white);
    margin-top: 80px;
}

.cta-section .section-content {
    background: transparent;
    padding: 60px 40px;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    margin-top: 20px;
}

.closing-section-content p {
    font-family: lemon milk;
    font-size: 20px;
}

/* Contact Us Page Styles */
.contact-hero {
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
}

.contact-hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-us-heading {
    padding: 60px 0;
    text-align: center;
    background: var(--white);
}

.contact-us-heading h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
    letter-spacing: 1px;
}

.contact-page {
    padding: 80px 0;
    background: var(--white);
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-page-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.keep-close-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-page-left h2 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
    color: var(--dark-text);
    font-family: lemon milk;
}

.contact-intro-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin: 0;
}

.contact-details-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.detail-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.detail-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 5px 0;
}

.detail-text p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin: 0;
    line-height: 1.5;
}

.contact-page-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    width: 100%;
    background: var(--light-gray);
    padding: 50px 40px;
    border-radius: 8px;
}

.form-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
}

.form-group label {
    font-size: 0.85rem;
    /* font-weight: 700; */
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 0 0;
    border: none;
    border-bottom: 1px solid #DDDDDD;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-text);
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}


.btn-submit {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    color: var(--dark-text);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
    width: fit-content;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}


.submit-circle {
    width: 40px;
    height: 40px;
    background: #E73C2C !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    margin-right: -20px;
}

.submit-text {
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.submit-arrow {
    font-size: 1rem;
}

.btn-submit:hover {
    opacity: 0.85;
    transition: all 0.3s ease;
}

/* Tablet Responsive - Contact Us Page */
@media (max-width: 1024px) {
    .contact-page-content {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }

    .contact-page-left {
        gap: 35px;
    }

    .contact-page-left h2 {
        font-size: 2rem;
    }

    .contact-intro-text {
        font-size: 0.95rem;
    }

    .form-container {
        padding: 40px 35px;
    }

    .form-container h3 {
        font-size: 1.6rem;
    }
}

/* Mobile Responsive - Contact Us Page (480px - 767px) */
@media (max-width: 767px) {
    .contact-hero {
        height: 350px;
    }

    .contact-hero-overlay h1 {
        font-size: 2rem;
    }

    .contact-page {
        padding: 60px 0;
    }

    .contact-page-content {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    .contact-page-left {
        gap: 30px;
    }

    .keep-close-label {
        font-size: 0.75rem;
    }

    .contact-page-left h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .contact-body-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .contact-intro-text {
        font-size: 0.9rem;
    }

    .contact-details-section {
        gap: 25px;
    }

    .contact-detail-item {
        gap: 12px;
    }

    .detail-icon {
        font-size: 1.5rem;
    }

    .detail-text h4 {
        font-size: 0.9rem;
    }

    .detail-text p {
        font-size: 0.9rem;
    }

    .form-container {
        padding: 35px 30px;
        background: var(--light-gray);
    }

    .form-container h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .form-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
        padding-bottom: 8px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .btn-submit {
        font-size: 0.85rem;
        margin-top: 15px;
    }

    .submit-circle {
        width: 35px;
        height: 35px;
    }
}

/* Small Mobile Responsive - Contact Us Page (below 480px) */
@media (max-width: 479px) {
    .contact-hero {
        height: 280px;
    }

    .contact-hero-overlay h1 {
        font-size: 1.5rem;
    }

    .contact-page {
        padding: 50px 0;
    }

    .contact-page-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .contact-page-left {
        gap: 25px;
    }

    .keep-close-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .contact-page-left h2 {
        font-size: 1.3rem;
    }

    .contact-body-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .contact-intro-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .contact-details-section {
        gap: 20px;
    }

    .contact-detail-item {
        gap: 10px;
    }

    .detail-icon {
        font-size: 1.3rem;
    }

    .detail-text h4 {
        font-size: 0.85rem;
        margin-bottom: 3px;
    }

    .detail-text p {
        font-size: 0.85rem;
    }

    .form-container {
        padding: 30px 20px;
    }

    .form-container h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .form-subtitle {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .contact-form {
        gap: 18px;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.85rem;
        padding-bottom: 6px;
    }

    .form-group textarea {
        min-height: 90px;
    }

    .btn-submit {
        font-size: 0.8rem;
        margin-top: 12px;
    }

    .submit-circle {
        width: 32px;
        height: 32px;
    }

    .submit-arrow {
        font-size: 0.9rem;
    }
}

/* Services Page Styles */
.services-hero {
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.services-hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.services-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.services-hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.services-grid-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f9f9f9 100%);
}

.services-slider-header {
    margin-bottom: 60px;
    text-align: center;
    animation: slideInDown 0.6s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-slider-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
    font-family: lemon milk;
}

.services-slider-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    border-radius: 2px;
}

.services-slider-wrapper {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(224, 10, 21, 0.05) 0%, rgba(46, 141, 190, 0.05) 100%);
    padding: 50px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    perspective: 1200px;
}

.services-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    transform-style: preserve-3d;
}

.service-card {
    min-width: calc(33.333% - 20px);
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border: 2px solid #e0e0e0;
    border-left: 8px solid var(--primary-red);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
}

.service-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
    text-align: left;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-card:hover .service-icon {
    transform: scale(1.15);
}

.service-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 20px rgba(224, 10, 21, 0.15);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    font-family: lemon milk;
}

.service-card:hover h3 {
    color: var(--primary-red);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
    font-family: lemon milk;
}

.services-skills {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, var(--white) 100%);
}

.skills-header {
    text-align: center;
    margin-bottom: 80px;
    animation: slideInDown 0.8s ease;
}

.skills-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
    font-family:lemon milk;
}

.skills-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    border-radius: 2px;
}

.skills-header p {
    font-size: 20px;
    color: var(--light-text);
    margin: 0;
    letter-spacing: 0.5px;
    font-family:lemon milk;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    text-align: center;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.skill-item:nth-child(1) { animation-delay: 0.1s; }
.skill-item:nth-child(2) { animation-delay: 0.2s; }
.skill-item:nth-child(3) { animation-delay: 0.3s; }
.skill-item:nth-child(4) { animation-delay: 0.4s; }

.skill-item:hover {
    transform: translateY(-20px) scale(1.08);
}

.skill-circle {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(224, 10, 21, 0.08) 0%, rgba(46, 141, 190, 0.08) 100%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(224, 10, 21, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.skill-item:hover .skill-circle {
    background: linear-gradient(135deg, rgba(224, 10, 21, 0.15) 0%, rgba(46, 141, 190, 0.15) 100%);
    box-shadow: 0 15px 50px rgba(224, 10, 21, 0.3), 0 0 30px rgba(224, 10, 21, 0.2);
    transform: rotate(360deg);
}

.skill-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.skill-circle-bg {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 6;
    opacity: 0.3;
}

.skill-circle-progress {
    fill: none;
    stroke: url(#skillGradient);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dasharray 1.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
    filter: drop-shadow(0 0 2px rgba(224, 10, 21, 0.3));
}

.skill-item:hover .skill-circle-progress {
    filter: drop-shadow(0 0 8px rgba(224, 10, 21, 0.6));
    stroke-width: 7;
}

.skill-percent {
    position: absolute;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-red) 0%, #E73C2C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 0 20px rgba(224, 10, 21, 0.1);
}

.skill-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
    font-family: lemon milk;
}

.skill-item:hover h4 {
    color: var(--primary-red);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slider-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.pagination-dot:hover {
    background: var(--primary-red);
    transform: scale(1.3);
}

.pagination-dot.active {
    background: var(--primary-red);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(224, 10, 21, 0.4);
}

/* Responsive About Us Styles */
@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }

    .about-intro h1 {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .section-content {
        padding: 40px 30px;
    }

    .section-content h2 {
        font-size: 1.6rem;
    }

    /* Contact Page Responsive */
    .contact-page {
        padding: 40px 0;
    }

    .contact-hero {
        height: 350px;
    }

    .contact-hero-overlay h1 {
        font-size: 2.5rem;
    }

    .contact-us-heading {
        padding: 40px 0;
    }

    .contact-us-heading h1 {
        font-size: 2rem;
    }

    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-page-left h2 {
        font-size: 2rem;
    }

    .contact-page-left {
        gap: 30px;
    }

    .form-container {
        padding: 40px 25px;
    }

    .form-container h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 200px;
    }

    .about-intro h1 {
        font-size: 1.5rem;
    }

    .intro-text {
        font-size: 0.95rem;
    }

    .section-content {
        padding: 30px 20px;
    }

    .section-content h2 {
        font-size: 1.3rem;
    }

    .value-item {
        padding: 20px;
    }

    .expertise-list li {
        padding-left: 25px;
        font-size: 0.95rem;
    }

    /* Contact Page Responsive Mobile */
    .contact-page {
        padding: 30px 0;
    }

    .contact-hero {
        height: 250px;
    }

    .contact-hero-overlay h1 {
        font-size: 1.8rem;
    }

    .contact-us-heading {
        padding: 30px 0;
    }

    .contact-us-heading h1 {
        font-size: 1.5rem;
    }

    .contact-page-left h2 {
        font-size: 1.5rem;
    }

    .contact-intro-text {
        font-size: 0.9rem;
    }

    .contact-details-section {
        gap: 20px;
    }

    .detail-icon {
        font-size: 1.5rem;
    }

    .detail-text h4 {
        font-size: 0.9rem;
    }

    .detail-text p {
        font-size: 0.85rem;
    }

    .form-container {
        padding: 30px 15px;
    }

    .form-container h3 {
        font-size: 1.3rem;
    }

    .form-group label {
        font-size: 0.75rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE MEDIA QUERIES
   Desktop: 1025px+
   Tablet: 768px - 1024px
   Mobile: 480px - 767px
   Small Mobile: below 480px
   ============================================================ */

/* Tablet: 768px to 1024px */
@media (max-width: 1024px) {
    /* Header */
    header {
        padding: 12px 0;
    }
    
    .header-inner {
        gap: 20px;
    }
    
    .logo img {
        max-height: 70px;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 8px 20px;
    }
    
    /* Hero Section */
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        width: 100%;
        height: auto;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
    }
    
    /* About Section */
    .about-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        height: 400px;
    }
    
    /* Technologies Grid */
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .tech-slider-container {
        gap: 20px;
    }
    
    .tech-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Statistics Section */
    .statistics-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .statistics-left h3 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        flex-direction: column;
    }
    
    .form-group {
        width: 100%;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Reduce padding on sections */
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .technologies {
        padding: 60px 0;
    }
    
    .statistics {
        padding: 60px 0;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    /* Services Responsive - Tablet */
    .services-hero {
        height: 350px;
    }
    
    .services-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-hero-content p {
        font-size: 1rem;
    }
    
    .services-slider-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        min-width: calc(50% - 15px);
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .skill-item h4 {
        font-size: 1rem;
    }
    
    .skill-percent {
        font-size: 1.8rem;
    }
    
    /* Skills Hover Effects - Tablet */
    .skill-item:hover {
        transform: translateY(-12px) scale(1.05);
    }
    
    .skill-item:hover .skill-circle {
        background: linear-gradient(135deg, rgba(224, 10, 21, 0.15) 0%, rgba(46, 141, 190, 0.15) 100%);
        box-shadow: 0 15px 50px rgba(224, 10, 21, 0.3), 0 0 30px rgba(224, 10, 21, 0.2);
        transform: rotate(360deg);
    }
    
    .skill-item:hover .skill-circle-progress {
        filter: drop-shadow(0 0 8px rgba(224, 10, 21, 0.6));
        stroke-width: 7;
    }
    
    .skill-item:hover h4 {
        color: var(--primary-red);
    }
}

/* Mobile: 480px to 767px */
@media (max-width: 767px) {
    /* Header */
    header {
        padding: 10px 0;
    }
    
    .header-inner {
        gap: 10px;
    }
    
    .logo img {
        max-height: 60px;
    }
    
    .badge {
        display: none;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    /* Hero Section */
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-text {
        text-align: center;
        padding: 30px 20px;
        order: 1;
    }
    
    .hero-image {
        width: 100%;
        height: auto;
        order: 2;
        max-height: 280px;
        overflow: hidden;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
        max-height: 280px;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .btn-primary {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
    
    /* Hero Image Sizing */
    .hero-images-container {
        width: 200px;
        height: 260px;
        border-radius: 100px;
    }
    
    .hero-image-circle {
        width: 70px;
        height: 85px;
    }
    
    .hero-image-circle:nth-child(1) {
        width: 65px;
        height: 80px;
    }
    
    .hero-image-circle:nth-child(2),
    .hero-image-circle:nth-child(3) {
        width: 70px;
        height: 85px;
    }
    
    /* About Section */
    .about-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-title {
        font-size: 0.85rem;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
        line-height: 1.6;
    }
    
    .about-image {
        height: 250px;
        width: 100%;
    }
    
    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    /* Technologies Grid */
    .tech-grid {
        grid-template-columns: 1fr; 
    }
    
    .tech-item {
        padding: 20px;
        text-align: center;
    }
    
    .tech-icon-img {
        max-width: 80px;
        height: auto;
    }
    
    .tech-item h4 {
        font-size: 1.1rem;
    }
    
    .tech-item p {
        font-size: 0.9rem;
    }
    
    /* Statistics Section */
    .statistics-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .statistics-left h3 {
        font-size: 1.3rem;
        line-height: 1.6;
    }
    
    .statistics-image {
        height: 300px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px;
        text-align: center;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-left {
        gap: 30px;
    }
    
    .contact-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .contact-right {
        height: auto;
        margin-left: 0;
        gap: 20px;
    }
    
    .contact-text {
        padding-top: 0;
    }
    
    .contact-text p {
        font-size: 1rem;
    }
    
    .contact-image {
        margin-bottom: 0;
        overflow: visible;
    }
    
    .contact-right img {
        width: 100%;
        height: auto;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-right {
        gap: 30px;
    }
    
    .footer-logo img {
        max-width: 150px;
        height: auto;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
    }
    
    h2.whyus {
        font-size: 1.8rem;
    }
    
    .statistics-subtitle {
        font-size: 0.95rem;
    }
    
    /* Container padding */
    .container {
        padding: 0 20px;
    }
    
    /* Section padding */
    .hero {
        padding: 30px 0;
        min-height: auto;
    }
    
    .about {
        padding: 40px 0;
    }
    
    .technologies {
        padding: 40px 0;
    }
    
    .statistics {
        padding: 40px 0;
    }
    
    .contact {
        padding: 40px 0;
    }
    
    .footer-main {
        padding: 40px 0 20px;
    }
    
    /* Services Responsive - Mobile */
    .services-hero {
        height: 300px;
    }
    
    .services-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .services-hero-content p {
        font-size: 0.9rem;
    }
    
    .services-grid-section {
        padding: 60px 0;
    }
    
    .services-slider-header h2 {
        font-size: 1.6rem;
    }
    
    .services-slider-header p {
        font-size: 1rem;
    }
    
    .services-slider-wrapper {
        padding: 30px 15px;
        border-radius: 12px;
    }
    
    /*.services-slider {*/
    /*    gap: 0 !important;*/
    /*}*/
    
    .service-card {
        min-width: 100%;
        padding: 30px 20px;
        border-left-width: 6px;
        /* Mobile width override moved to media query below */
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .services-skills {
        padding: 60px 0;
    }
    
    .skills-header h2 {
        font-size: 1.6rem;
    }
    
    .skills-header p {
        font-size: 1rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .skill-circle {
        width: 120px;
        height: 120px;
    }
    
    .skill-percent {
        font-size: 1.5rem;
    }
    
    .skill-item h4 {
        font-size: 0.9rem;
    }
    
    /* Skills Hover Effects - Mobile */
    .skill-item:hover {
        transform: translateY(-8px) scale(1.04);
    }
    
    .skill-item:hover .skill-circle {
        background: linear-gradient(135deg, rgba(224, 10, 21, 0.15) 0%, rgba(46, 141, 190, 0.15) 100%);
        box-shadow: 0 12px 35px rgba(224, 10, 21, 0.25), 0 0 25px rgba(224, 10, 21, 0.15);
        transform: rotate(360deg);
    }
    
    .skill-item:hover .skill-circle-progress {
        filter: drop-shadow(0 0 6px rgba(224, 10, 21, 0.5));
        stroke-width: 7;
    }
    
    .skill-item:hover h4 {
        color: var(--primary-red);
    }
}

/* Small Mobile: below 480px */
@media (max-width: 479px) {
    /* Header */
    header {
        padding: 8px 0;
    }
    
    .header-inner {
        gap: 8px;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .slide-menu-toggle span {
        width: 28px;
        height: 2px;
    }
    
    /* Hero Section */
    .hero-text h1 {
        font-size: 1.2rem;
    }
    
    .hero-text p {
        font-size: 0.85rem;
    }
    
    .hero-image {
        max-height: 300px;
    }
    
    /* About Section */
    .about-text h3 {
        font-size: 1.1rem;
    }
    
    .about-image {
        height: 250px;
    }
    
    /* Technologies Grid */
    .tech-grid {
        grid-template-columns: 1fr; 
    }
    
    .tech-item h4 {
        font-size: 1rem;
    }
    
    .tech-item p {
        font-size: 0.85rem;
    }
    
    /* Statistics Section */
    .statistics-left h3 {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 0px 0;
        min-height: auto;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .hero-text {
        padding: 20px 0;
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .hero-images-container {
        width: 170px;
        height: 220px;
        border-radius: 85px;
    }
    
    .hero-image-circle {
        width: 60px;
        height: 70px;
    }
    
    .hero-image-circle:nth-child(1) {
        width: 55px;
        height: 65px;
    }
    
    .hero-image-circle:nth-child(2),
    .hero-image-circle:nth-child(3) {
        width: 60px;
        height: 70px;
    }
    
    /* Contact Section */
    .contact-left {
        gap: 20px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .contact-right {
        margin-left: 0;
        gap: 15px;
    }
    
    .contact-text p {
        font-size: 0.95rem;
    }
    
    .contact-image {
        margin-bottom: 0;
    }
    
    /* Footer */
    .footer-content {
        gap: 20px;
    }
    
    .footer-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    /* General */
    .section-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    h4 {
        font-size: 1rem;
    }
    
    /* Skills Hover Effects - Small Mobile */
    .skill-item:hover {
        transform: translateY(-6px) scale(1.03);
    }
    
    .skill-item:hover .skill-circle {
        background: linear-gradient(135deg, rgba(224, 10, 21, 0.15) 0%, rgba(46, 141, 190, 0.15) 100%);
        box-shadow: 0 10px 30px rgba(224, 10, 21, 0.2), 0 0 20px rgba(224, 10, 21, 0.1);
        transform: rotate(360deg);
    }
    
    .skill-item:hover .skill-circle-progress {
        filter: drop-shadow(0 0 5px rgba(224, 10, 21, 0.4));
        stroke-width: 6;
    }
    
    .skill-item:hover h4 {
        color: var(--primary-red);
    }
}

/* Scroll Navigation Buttons */
.scroll-top-btn,
.scroll-bottom-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    border: 2px solid var(--primary-red);
    background: transparent;
    color: var(--primary-red);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    z-index: 99;
}

.scroll-top-btn:hover,
.scroll-bottom-btn:hover {
    opacity: 1;
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.1);
}

.scroll-top-btn {
    top: 30px;
}

.scroll-bottom-btn {
    bottom: 30px;
}


@media screen and (max-width: 1024px) {
   .tech-item {
       min-width: calc((100% - -240px) / 4);
    } 
}

@media screen and (max-width: 991px) {
   .tech-item {
       min-width: calc((100% - -654px) / 4);
    } 
}


@media screen and (max-width: 575px) {
   .tech-item {
       min-width: 100%;
    } 
    .tech-grid {
        gap: 30px;
    }
}
 
 
 
