                /* ===== SYSTRANS EXACT STYLE ===== */
:root {
    --primary-color: #ffffff;
    --secondary-color: #FF6B35;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --border-color: #eaeaea;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #000;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark-bg);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-contact i {
    color: var(--secondary-color);
}

.top-social a {
    color: white;
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.top-social a:hover {
    color: var(--secondary-color);
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 20px 0;
    background: white !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 800;
    color: #000 !important;
    display: flex;
    align-items: center;
}

.navbar-brand span {
    color: var(--secondary-color);
}

.nav-link {
    font-weight: 600;
    color: #333 !important;
    margin: 0 10px;
    padding: 8px 15px !important;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--secondary-color);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #e55a2b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}
/* Top bar */
.top-bar {
    background: #0d1b2a;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-contact span {
    margin-right: 20px;
}

.top-social a {
    color: #fff;
    margin-left: 15px;
    transition: 0.3s;
}

.top-social a:hover {
    color: #F58220;
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-link {
    color: #333 !important;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #F58220 !important;
}

/* DROPDOWN HOVER */
.navbar .dropdown-menu {
    display: none;
    border-radius: 8px;
    border: none;
    padding: 10px 0;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Show on hover */
.navbar .dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown items */
.dropdown-item {
    padding: 10px 20px;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: #F58220;
    color: #fff;
}

/* Smooth animation */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 20px;
    justify-content: center;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: white;
}

/* about us */

.about-section{
    padding:80px 10%;
    position:relative;
    overflow:hidden;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-text h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.about-text h1 span{
    background:linear-gradient(90deg,#38bdf8,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.about-text p{
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
}

.about-features{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.feature-box{
    background:rgba(255,255,255,0.05);
    padding:12px 18px;
    border-radius:30px;
    font-size:14px;
    backdrop-filter:blur(10px);
    transition:0.3s;
}

.feature-box:hover{
    background:#6366f1;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
}



.stats{
    display:flex;
    gap:30px;
    margin-top:30px;
}

.stat{
    text-align:center;
}

.stat h2{
    font-size:28px;
    color:#38bdf8;
}

.stat p{
    font-size:13px;
    color:#94a3b8;
}

/* end about */


/* portfolio */
.portfolio{
    padding:80px 10%;
}

.portfolio h1{
    text-align:center;
    font-size:40px;
    margin-bottom:10px;
}

.portfolio h1 span{
    background: linear-gradient(90deg, #3eb2f7, #3b82f6);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.portfolio p{
    text-align:center;
    color:#94a3b8;
    margin-bottom:50px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
}

.card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to top,rgba(0,0,0,0.9),transparent);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:20px;
    opacity:0;
    transition:0.4s;
}

.card:hover img{
    transform:scale(1.1);
}

.card:hover .overlay{
    opacity:1;
}

.overlay h3{
    margin:0;
    font-size:20px;
}

.overlay p{
    font-size:13px;
    color:#cbd5f5;
    margin:5px 0 10px;
}

.ctnbtn{
    display:inline-block;
    padding:8px 16px;
    border-radius:5px;
    background:linear-gradient(135deg, #1ea1e1, #054588);
    color:#fff;
    text-decoration:none;
    font-size:12px;
    transition:0.3s;
}

.ctnbtn:hover{
    background:#ffd6c8;
}


/* endportfolio */

/* ===== SECTIONS ===== */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
    position: relative;
    display: inline-block;
}

.section-header h2 span {
    color: var(--secondary-color);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.section-header p {
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 16px;
}

/* ===== SERVICES ===== */
.services-section {
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s;
    height: 100%;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--secondary-color);
    font-size: 36px;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
}

.service-box p {
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    gap: 10px;
}

/* ===== SERVICE DETAILS ===== */
.service-details {
    background: #f8f9fa;
}

.service-features {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 20px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid var(--secondary-color);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin: 20px 0;
}

.price span {
    font-size: 16px;
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* ===== PORTFOLIO ===== */
.portfolio-section {
    background: #f8f9fa;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: none;
    padding: 8px 25px;
    border-radius: 4px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--secondary-color);
    color: white;
}

.portfolio-item {
    margin-bottom: 30px;
    transition: all 0.3s;
}

.portfolio-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* ===== CONTACT ===== */
.contact-info-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    height: 100%;
    text-align: center;
}

.contact-info-box i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-info-box h4 {
    margin-bottom: 15px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-control {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    margin: 0 15px;
}

.quote-icon {
    position: absolute;
    top: -25px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin: 0;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FF6B35;
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #000;
}

.client-details p {
    color: #666;
    margin-bottom: 8px;
    font-size: 14px;
}

.rating {
    color: #FF6B35;
    font-size: 14px;
}

/* ===== CLIENTS ===== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.client-logo {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.client-logo img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* ===== STATS ===== */
.stats-section {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C53 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: white;
}

.stat-content h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.stat-content p {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

/* contact us */

.contact-section{
      padding:80px 0;
      position:relative;
      overflow:hidden;
    }

    .section-title h2{
      font-weight:700;
      font-size:42px;
    }

    .section-title span{
      background:linear-gradient(90deg, #13afd7, #095194);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }

   .icon-box i.fa.fa {
    color: #fff;
}
    .btn-custom:hover{
      transform:translateY(-2px);
      box-shadow:0 10px 30px rgba(0,245,160,0.4);
    }

    .info-card{
      background:#eaeeff;
      border-radius:15px;
      padding:20px;
      display:flex;
      gap:15px;
      align-items:center;
      transition:0.3s;
    }

    .info-card:hover{
      background:#ffd6c8;
      color:#000;
    }

    .icon-box{
      width:45px;
      height:45px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:10px;
      background:linear-gradient(135deg, #1ea1e1, #054588);
      color:#000;
      font-size:18px;
    }

    .map iframe{
      width:100%;
      height:200px;
      border-radius:15px;
      border:none;
      margin-top:15px;
    }

   
  /* end contct us */

/* ===== FOOTER ===== */
.footer-links li{
    margin-bottom:8px;
}

.footer-links a{
    color:#94a3b8;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#22c55e;
    padding-left:5px;
}

.social-icon{
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#111827;
    color:#fff;
    transition:0.3s;
}

.social-icon:hover{
    background:linear-gradient(135deg,#22c55e,#3b82f6);
    color:#000;
    transform:translateY(-3px);
}


.footer {
    background: #003b73 !important;
    color: white !important;
    padding: 70px 0 20px;
}
.footer h5, .footer p, .footer a {
    color: #fff !important;
}

.footer-widget h4 {
    color: white !important;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

    .top-contact {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-social {
        text-align: center;
        margin-top: 10px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .service-features {
        padding: 30px;
    }
}
/* ===== EXTRA MOBILE IMPROVEMENTS ===== */
@media (max-width: 768px) {

    /* Global Fix */
    body {
        padding: 0 10px;
    }

    h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Section spacing */
    section {
        padding: 40px 0 !important;
    }

    /* Buttons */
    .btn {
        padding: 12px 18px;
        font-size: 14px;
        border-radius: 8px;
        display: inline-block;
    }

    /* Navbar spacing */
    .navbar-nav .nav-link {
        padding: 12px;
        font-size: 15px;
    }

    /* Fix cards spacing */
    .service-box,
    .testimonial-card,
    .contact-info-box,
    .contact-form {
        padding: 20px !important;
    }

    /* Fix grid overflow issue */
    .row {
        margin-left: 0;
        margin-right: 0;
    }

    /* Images fix */
    img {
        width: 100%;
        height: auto;
    }
      .page-header {
        text-align: center;
        padding: 100px 15px 60px;
    }

    .page-header h1 {
        font-size: 24px;
        font-weight: 700;
    }

    .page-header p {
        font-size: 14px;
        opacity: 0.9;
    }
}







        