body{
    background-color: white;
    
}
        .navbar {
            background: white;
            height: 70px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1000;
        }

        .logo {
            color: linear-gradient(135deg, #1a2a3a 0%, #0d1b2a 100%);
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
      

        .nav-links {
            display: flex;
            list-style: none;
            transition: all 0.5s ease;
        }

        .nav-links li {
            margin: 0 10px;
            position: relative;
        }

        .nav-links a {
            color: black;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 10px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #4da6ff;
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: black;
            margin: 5px;
            transition: all 0.3s ease;
        }

        .main-content {
            padding: 20px;
            text-align: center;
        }

        /* Mobile styles */
        @media screen and (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background:white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                clip-path: circle(0px at 90% -10%);
                -webkit-clip-path: circle(0px at 90% -10%);
                transition: all 0.8s ease-out;
                pointer-events: none;
            }

            .nav-links.open {
                clip-path: circle(1000px at 90% -10%);
                -webkit-clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }

            .nav-links li {
                opacity: 0;
                margin: 15px 0;
                transform: translateX(30px);
                transition: all 0.4s ease 0.2s;
            }

            .nav-links.open li {
                opacity: 1;
                transform: translateX(0);
            }

            .nav-links a {
                padding: 15px 25px;
                display: block;
                width: 100%;
                text-align: center;
            }

            .nav-links a:hover {
                transform: none;
                background-color: rgba(255, 255, 255, 0.2);
            }
            .hamburger {
                display: block;
            }

            /* Hide main content when menu is open */
            body.menu-open .main-content {
                display: none;
            }
        }

        /* Animation for hamburger to X */
        .toggle .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .toggle .line2 {
            opacity: 0;
        }

        .toggle .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

    /* header */


    /* HEADER WRAPPER */
    header {
        width: 100%;
        background: #0d2b52; /* Dark Blue */
        color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 30px;
        box-sizing: border-box;
        position: relative;
        flex-wrap: nowrap;
    }

    /* LEFT LOGO BOX */
    .logo-box-u {
        width: 100px;
        height: 100px;
        background: #0d2b52;
        border: 3px solid #0d2b52;
        box-sizing: border-box;
        overflow: hidden;
    }
    .logo-box-u img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* CENTER TITLE */
    .center-text-u {
        text-align: center;
        position: relative;
        padding: 0 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    /* Animated vertical lines */
    .v-line {
        width: 4px;
        height: 80px;
        background: linear-gradient(180deg, white, #0d2b52, white);
        animation: pulse 2s infinite ease-in-out;
    }

    @keyframes pulse {
        0% {opacity: 0.4;}
        50% {opacity: 1;}
        100% {opacity: 0.4;}
    }

    .center-text-u .top-line {
        font-size: 24px;
        font-weight: bold;
        line-height: 28px;
    }
    .center-text-u .bottom-line {
        font-size: 14px;
        margin-top: 5px;
        letter-spacing: 1px;
    }

    /* RIGHT BUTTON COLUMN */
    .buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        background: white;
        color: #0d2b52;
        font-weight: bold;
        border: 2px solid white;
        padding: 12px 18px;
        cursor: pointer;
        border-radius: 6px;
        transition: 0.3s;
        text-align: center;
        min-width: 200px;
    }
    .btn:hover {
        background: #0d2b52;
        color: white;
        border-color: white;
    }

    /* POP-UP FORM */
    #quoteForm {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 350px;
        max-height: 90vh;
        background: #ffffff;
        border: 3px solid #0d2b52;
        box-shadow: 0 0 20px rgba(0,0,0,0.35);
        padding: 20px;
        overflow-y: auto;
        display: none;
        z-index: 9999;
    }

    #quoteForm h3 {
        margin-top: 0;
        color: #0d2b52;
        text-align: center;
    }

    form input, form select, form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 12px;
        border: 2px solid #0d2b52;
        border-radius: 5px;
        box-sizing: border-box;
    }

    form textarea {
        height: 90px;
    }

    .close-btn {
        background: #0d2b52;
        color: white;
        padding: 8px 10px;
        border: none;
        float: right;
        cursor: pointer;
        border-radius: 4px;
    }

    .submit-btn {
        width: 100%;
        background: #0d2b52;
        color: white;
        padding: 12px;
        border: none;
        font-size: 16px;
        cursor: pointer;
        border-radius: 6px;
    }

    /* RESPONSIVE — MOBILE STACK */
    @media (max-width: 768px) {
        header {
            flex-direction: column;
            text-align: center;
            gap: 20px;
        }

        .center-text-u {
            order: 3;
            flex-direction: column;
        }

        .v-line {
            height: 40px;
        }

        .buttons {
            flex-direction: column;
            width: 100%;
            align-items: center;
        }

        .btn {
            width: 90%;
        }

        #quoteForm {
            width: 90%;
            left: 5%;
            right: 5%;
        }
    }




        /* revoulnize industri */
/* Main container */
.quality {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* Video & image background */
.bg-video,
.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide image by default (desktop) */
.bg-image {
  display: none;
}

/* Overlay content */
.content-r {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

/* Gradient text */
.company-name-r {
  font-size: clamp(30px, 6vw, 90px);
  font-weight: 650;
  white-space: nowrap; /* keep straight line on mobile */
  background: linear-gradient(90deg, #0a4cff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Corner-only border base */
.corner-box {
  position: relative;
  padding: 18px 28px;
}

/* Animated gradient corners */
.corner-box::before,
.corner-box::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #0b2c6d, #c0c0c0, #0b2c6d);
  background-size: 300% 300%;
  animation: borderMove 4s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 3px;
}

/* Corner cut effect */
.corner-box {
  clip-path: polygon(
    0 20px, 20px 0, calc(100% - 20px) 0, 100% 20px,
    100% calc(100% - 20px), calc(100% - 20px) 100%,
    20px 100%, 0 calc(100% - 20px)
  );
}

/* Idiom text */
.idiom {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #ffffff;
}

/* Animation */
@keyframes borderMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Mobile behavior */
@media (max-width: 768px) {
  .bg-video {
    display: none;
  }
  .bg-image {
    display: block;
  }

  .content-r {
    justify-content: center;
  }
}

      
        
   


   
   
         /* quality security  guard */
   .frame {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px 20px;
    }

    .container-inc {
        width: 100%;
        max-width: 1200px;
        display: flex;
        gap: 40px;
        background: #ffffff;
        padding: 40px;
    }

    .left-inc, .right-inc {
        flex: 1;
    }

    /* Titles */
    h6 {
        margin: 0;
        font-size: 28px;
        font-weight: bold;
    }

    .light-blue {
        color: #4fb6e8;
    }

    .black-inc {
        color: black;
    }

    .yellow-bar {
        width: 60px;
        height: 4px;
        background: #f2c400;
        margin: 10px 0 20px 0;
    }

    /* Paragraphs */
    .left-inc p {
        color: #333;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    /* Form */
    form {
        width: 100%;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    input, select, textarea, button {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        font-size: 14px;
    }

    textarea {
        resize: none;
        height: 120px;
        margin-top: 15px;
    }

    button {
        margin-top: 20px;
        background: #4fb6e8;
        color: #fff;
        border: none;
        cursor: pointer;
        font-size: 15px;
    }

    button:hover {
        background: #3aa1d1;
    }

    /* Mobile */
    @media (max-width: 768px) {
        .container-inc {
            flex-direction: column;
        }

        .form-grid {
            grid-template-columns: 1fr;
        }

        h6 {
            text-align: left;
        }
    }
   



 
   
       





    
  /* top security company in ca*/
   .container-top {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Top Section Styling */
        .top-section-top {
            background-color: white;
            padding: 40px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }
        
        .title-container-top {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .vertical-line-top {
            width: 3px;
            height: 60px;
            background-color: #333;
            margin: 0 20px;
        }
        
        .title-top {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            text-align: center;
        }
        
        .title-word {
            font-size: 2.2rem;
            font-weight: bold;
            margin: 0 5px;
        }
        
        .first-word-top {
            color: lightblue; /* Light blue */
            position: relative;
            display: inline-block;
        }
        
        .first-word-top::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #FFD700; /* Yellow */
        }
        
        .other-words {
            color: #000;
        }
        
        .content-top {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .paragraph {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        
        /* Bottom Section Styling */
        .bottom-section {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .box-top {
            flex: 1;
            position: relative;
            height: 300px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .box-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .box-top:hover .box-image {
            transform: scale(1.05);
        }
        
        .box-title-top {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 15px;
            text-align: center;
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        /* Animated Border */
        @keyframes borderAnimation {
            0% {
                border-color: #1E90FF;
            }
            25% {
                border-color: #FFD700;
            }
            50% {
                border-color: #32CD32;
            }
            75% {
                border-color: #FF6347;
            }
            100% {
                border-color: #1E90FF;
            }
        }
        
        .box-top {
            border: 3px solid #1E90FF;
            animation: borderAnimation 5s infinite linear;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .bottom-section {
                flex-direction: column;
            }
            
            .box-top {
                margin-bottom: 20px;
                height: 250px;
            }
            
            .title-container-top {
                flex-direction: column;
            }
            
            .vertical-line-top {
                display: none;
            }
            
            .title-top {
                flex-direction: column;
            }
            
            .title-word {
                font-size: 1.8rem;
                margin: 5px 0;
            }
            
            .first-word-top::after {
                bottom: -3px;
            }
        }
  
  

  
    

 
 

      
     

       
 /* our services at home page*/
   .container-second {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        /* Header section styles */
        .header-section-second {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 60px;
        }
        
        .title-container-second {
            display: flex;
            align-items: center;
            flex: 1;
        }
        
        .animated-line {
            width: 4px;
            height: 80px;
            background-color: #3498db;
            margin: 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        .animated-line::before {
            content: '';
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, #fff, transparent);
            animation: lineAnimation 2s infinite;
        }
        
        @keyframes lineAnimation {
            0% {
                top: -100%;
            }
            100% {
                top: 100%;
            }
        }
        
        .title-second {
            font-size: 2.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .title-first {
            color: #3498db;
        }
        
        .title-last {
            color: #2c3e50;
        }
        
        .details-second {
            flex: 1;
            padding-left: 40px;
        }
        
        .company-name {
            color: #3498db;
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .details-second p {
            color: #555;
            font-size: 1.1rem;
        }
        
        /* Services section styles */
        .services-section-second {
            display: flex;
            justify-content: space-between;
            gap: 40px;
        }
        
        .services-column-second {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .service-box-second {
            background-color: white;
            padding: 30px;
            border: 2px solid #e0e0e0;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-box-second:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-box-second::before, .service-box::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid #3498db;
        }
        
        .service-box-second::before {
            top: -2px;
            left: -2px;
            border-right: none;
            border-bottom: none;
        }
        
        .service-box-second::after {
            bottom: -2px;
            right: -2px;
            border-left: none;
            border-top: none;
        }
        
        .service-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .service-details {
            color: #555;
        }
        
        .service-details p {
            margin-bottom: 10px;
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .header-section-second {
                flex-direction: column;
                margin-bottom: 40px;
            }
            
            .title-container-second {
                justify-content: center;
                margin-bottom: 30px;
            }
            
            .details-second {
                padding-left: 0;
                text-align: center;
            }
            
            .services-section-second {
                flex-direction: column;
                gap: 30px;
            }
            
            .services-column-second {
                gap: 30px;
            }
            
            .title-second {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .container-second {
                padding: 20px 15px;
            }
            
            .title-second {
                font-size: 1.7rem;
            }
            
            .service-box-second {
                padding: 20px;
            }
        }









 
        
     
    /* why choose us */
   .container-choose {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .title-container-choose {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .circle-title {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: lightblue;
            color: black;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            position: relative;
            margin-right: 30px;
            margin-bottom: 20px;
        }
        
        .circle-title h1 {
            font-size: 28px;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1.2;
        }
        
        .circle-title::before {
            content: '';
            position: absolute;
            width: 190px;
            height: 190px;
            border-radius: 50%;
            border: 2px dashed rgba(255,255,255,0.3);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .statements-choose {
            flex: 1;
            min-width: 300px;
        }
        
        .statements-choose p {
            font-size: 18px;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.6;
            position: relative;
            padding-left: 20px;
        }
        
        .statements-choose p::before {
            content: '✓';
            color: #4e4376;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .boxes-container {
            margin-top: 50px;
        }
        
        .box-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .divider {
            position: relative;
            width: 100%;
            height: 2px;
            margin: 30px 0;
            overflow: hidden;
        }
        
        .divider::before, .divider::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #4e4376, transparent);
            animation: moveLine 3s linear infinite;
        }
        
        .divider::before {
            top: 0;
            animation-delay: 0s;
        }
        
        .divider::after {
            top: 5px;
            animation-delay: 0.5s;
        }
        
        @keyframes moveLine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .box {
            width: calc(25% - 20px);
            min-width: 250px;
            background: white;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
            border-radius: 5px;
        }
        
        .box::before, .box::after {
            content: '';
            position: absolute;
            background: #4e4376;
        }
        
        .box::before {
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
        }
        
        .box::after {
            bottom: 0;
            right: 0;
            width: 100%;
            height: 3px;
        }
        
        .box-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .box-icon {
            font-size: 24px;
            color: #4e4376;
            margin-right: 15px;
            min-width: 30px;
        }
        
        .box-title {
            font-size: 18px;
            font-weight: 700;
            color: #2b5876;
        }
        
        .box-content {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }
        
        @media (max-width: 1024px) {
            .box {
                width: calc(50% - 15px);
            }
        }
        
        @media (max-width: 768px) {
            .title-container-choose {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .circle-title {
                margin-right: 0;
                margin-bottom: 30px;
            }
            
            .box {
                width: 100%;
            }
        }

  


 /* qg operation */
 .container-county {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .header-county {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
        }

        .title-section-county {
            display: flex;
            align-items: center;
            flex: 1;
        }

        .vertical-line-b {
            width: 2px;
            height: 60px;
            background-color: #0078D7;
            margin: 0 20px;
        }

        .title-county {
            font-size: 28px;
            font-weight: 700;
            white-space: nowrap;
        }

        .light-blue {
            color: #0078D7;
        }

        .content-section-county {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
        }

        .description-county {
            flex: 1;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .description-county p {
            margin-bottom: 15px;
        }

        .counties-section {
            flex: 1;
        }

        .counties-container {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }

        .county-group {
            flex: 1;
        }

        .county-list {
            list-style-type: none;
        }

        .county-item {
            padding: 10px 0;
            border-bottom: 1px solid #eaeaea;
            position: relative;
            padding-left: 15px;
        }

        .county-item:before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 16px;
            background-color: #0078D7;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .header-county {
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 30px;
            }

            .title-section-county {
                width: 100%;
                justify-content: center;
                margin-bottom: 20px;
            }

            .title-county {
                font-size: 24px;
                white-space: normal;
                text-align: center;
            }

            .content-section {
                flex-direction: column;
            }

            .counties-container {
                flex-direction: column;
            }

            .county-group {
                margin-bottom: 20px;
            }
        }

        /* Small Mobile Styles */
        @media (max-width: 480px) {
            .title-county {
                font-size: 20px;
            }

            .vertical-line-b {
                height: 40px;
                margin: 0 10px;
            }
        }
   
    
        
        /* Frame 2 Styles */
        .frame-2 {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .boxes-container-area {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .box-group-2 {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            flex: 1;
            min-width: 300px;
            justify-content: center;
        }
        
        .box-2 {
            width: calc(50% - 10px);
            min-width: 200px;
            text-align: center;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            background-color: white;
            transition: transform 0.3s ease;
        }
        
        .box-2:hover {
            transform: translateY(-5px);
        }
        
        .box-image {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 12px;
        }
        
        .box-title {
            font-weight: 600;
            color: #003366;
            font-size: 1rem;
        }
        
        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .title-container-area {
                flex-direction: column;
                text-align: center;
            }
            
            .vertical-line {
                width: 60px;
                height: 4px;
                margin: 10px 0;
            }
            
            .title-area {
                font-size: 1.8rem;
            }
            
            .counties-container {
                flex-direction: column;
            }
            
            .box-group-2 {
                flex-direction: column;
            }
            
            .box-2 {
                width: 100%;
            }
        }

      
  


  

/*mission and vision */
     .container-mvv {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .page-title {
            text-align: center;
            margin-bottom: 50px;
            color: #2c3e50;
            font-size: 2.5rem;
            position: relative;
        }

        .page-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2c3e50);
            margin: 15px auto;
            border-radius: 2px;
        }

        .content-wrapper {
            display: flex;
            gap: 30px;
            justify-content: space-between;
        }

        .mission, .vision {
            flex: 1;
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .mission:hover, .vision:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .section-title {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #2c3e50;
            position: relative;
            padding-bottom: 15px;
        }

        .title-container-mv {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .triangle-left, .triangle-right {
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
        }

        .triangle-left {
            border-right: 25px solid;
            margin-right: 15px;
        }

        .triangle-right {
            border-left: 25px solid;
            margin-left: 15px;
        }

        .mission .triangle-left {
            border-right-color: #000;
        }

        .mission .triangle-right {
            border-left-color: #3498db;
        }

        .vision .triangle-left {
            border-right-color: #3498db;
        }

        .vision .triangle-right {
            border-left-color: #000;
        }

        .content-mv {
            font-size: 1.1rem;
            color: #555;
            text-align: justify;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .mission, .vision {
                margin-bottom: 30px;
            }
        }

/* mv images */
  .container-mvi {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .title-section-mvi {
            text-align: center;
            margin-bottom: 60px;
            padding: 40px 20px;
        }
        
        h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .services-container-mvi {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .service-box-mvi {
            width: 300px;
            height: 300px;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-box-mvi:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .divider {
            width: 2px;
            height: 200px;
            background-color: #e0e0e0;
        }
        
        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
                padding: 0 10px;
            }
            
            .services-container-mvi {
                flex-direction: column;
                gap: 40px;
            }
            
            .service-box-mvi {
                width: 280px;
                height: 280px;
            }
            
            .divider {
                width: 200px;
                height: 2px;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            
            .service-box-mvi {
                width: 250px;
                height: 250px;
            }
        }
  


       

 

 


/* Frequently asked questions at homepage*/
     .container-q {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .faq-section {
            display: flex;
            gap: 60px;
        }

        .faq-title {
            flex: 0 0 300px;
            position: relative;
            padding-left: 40px;
        }

        .title-box-q {
            width: 20px;
            height: 20px;
            background-color: #2c3e50;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }

        .title-box-q.left {
            left: 0;
        }

        .title-box-q.right {
            right: 0;
        }

        .faq-title h1 {
            font-size: 32px;
            color: black;
            font-weight: 700;
            line-height: 1.2;
            text-align: center;
        }

        .faq-content {
            flex: 1;
        }

        .faq-item {
            margin-bottom: 25px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            background-color: black;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: white;
            transition: background-color 0.3s;
        }

        .faq-question:hover {
            background-color: #f8f9fa;
        }

        .faq-question h3 {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-left: 15px;
            flex: 1;
        }

        .checkmark {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: #e9ecef;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .checkmark::after {
            content: "+";
            font-size: 18px;
            font-weight: bold;
            color: #2c3e50;
            transition: all 0.3s ease;
        }

        .faq-item.active .checkmark {
            background-color: #3498db;
        }

        .faq-item.active .checkmark::after {
            content: "-";
            color: white;
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background-color: white;
        }

        .faq-item.active .faq-answer {
            padding: 0 25px 25px;
            max-height: 500px;
        }

        .faq-answer p {
            color: #555;
            font-size: 16px;
            margin-left: 39px;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .faq-section {
                flex-direction: column;
                gap: 30px;
            }

            .faq-title {
                flex: none;
                padding-left: 0;
                text-align: center;
                position: relative;
                width: 100%;
            }

            .title-box-q {
                position: static;
                transform: none;
                display: inline-block;
                margin: 0 15px;
                vertical-align: middle;
            }

            .faq-title h1 {
                display: inline-block;
                margin: 0;
                vertical-align: middle;
                font-size: 28px;
            }

            .faq-question {
                padding: 18px 20px;
            }

            .faq-question h3 {
                font-size: 16px;
            }

            .faq-answer p {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .container-q {
                padding: 20px 15px;
            }

            .faq-title h1 {
                font-size: 24px;
            }

            .faq-question {
                padding: 15px;
            }

            .faq-question h3 {
                font-size: 15px;
            }

            .faq-answer p {
                font-size: 14px;
            }
        }
    
   




/* footer */
   footer {
            background: linear-gradient(135deg, #0a1f44, #1e3c72);
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .footer-section-footer {
            display: flex;
            flex-direction: column;
        }

        .section-title-footer {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .vertical-line-footer {
            width: 4px;
            height: 25px;
            background: linear-gradient(to bottom, #4fc3f7, #0288d1);
            margin: 0 10px;
            border-radius: 2px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        .company-name-footer {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0;
            line-height: 1;
        }

        .company-subtitle-footer {
            font-size: 1rem;
            margin-top: 0.2rem;
            color: #bbdefb;
        }

        .company-info {
            margin: 1rem 0;
            line-height: 1.6;
            color: #e3f2fd;
        }

        .image-box-footer {
            width: 200px;
            height: 190px;
            margin-top: 1rem;
            border: 2px solid #4fc3f7;
            border-radius: 10px;
            border-top: none;
            border-left: none;
            overflow: hidden;
            position: relative;
        }

        .image-box-footer img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .links-list-footer {
            list-style: none;
        }

        .links-list-footer li {
            margin-bottom: 0.8rem;
        }

        .links-list-footer a {
            color: #bbdefb;
            text-decoration: none;
            transition: color 0.3s;
        }

        .links-list-footer a:hover {
            color: #4fc3f7;
        }

        .contact-info-footer {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item-footer {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .contact-icon-footer {
            width: 36px;
            height: 36px;
            background: rgba(79, 195, 247, 0.2);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #4fc3f7;
        }

        .social-icons-footer {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon-footer {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icon-footer:hover {
            background: #4fc3f7;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbdefb;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .company-name-footer {
                font-size: 2rem;
            }
            
            .image-box-footer {
                width: 100%;
                max-width: 250px;
            }
        }
 
   

        
     
   
  



/* about us */
        .page-frame {
            min-height: 100vh;
            padding: 20px;
            box-sizing: border-box;
            position: relative;
        }
        
        .corner-title-about {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: #f8f8f8;
            padding: 15px 25px;
            font-size: 24px;
            font-weight: bold;
            border-left: 5px solid orange;
        }
        
        .main-title-about {
            text-align: center;
            margin-top: 80px;
            margin-bottom: 10px;
            padding: 0 20%;
            font-size: 22px;
            font-weight: bold;
        }
        
        .orange-bar-about {
            height: 4px;
            background-color: orange;
            width: 150px;
            margin: 0 auto 30px;
        }
        
        .content-about {
            padding: 0 15%;
            line-height: 1.6;
            margin-bottom: 50px;
        }
        
        .company-name-about {
            color: #0066cc;
            font-weight: bold;
        }
        
        .arrow-container-about{
            text-align: center;
            margin-top: 40px;
        }
        
        .arrow-about {
            font-size: 40px;
            color: #333;
        }
    /* Quality Guard commitement*/
 /* Corner-only border styling */
        .corner-border-two {
            position: relative;
            padding: 25px;
            margin-bottom: 30px;
            background-color: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .corner-border-two::before,
        .corner-border-two::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 40px;
            border: 2px solid #2c5aa0;
        }
        
        .corner-border-two::before {
            top: 0;
            left: 0;
            border-right: none;
            border-bottom: none;
        }
        
        .corner-border-two::after {
            bottom: 0;
            right: 0;
            border-left: none;
            border-top: none;
        }
        
        /* Title styling */
        .main-title-two {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 15px;
            color: #1a3a6c;
            letter-spacing: 1px;
            padding-top: 10px;
        }
        
        /* Company name in blue */
        .company-name {
            color: #2c5aa0;
            font-weight: 700;
        }
        
        /* Commitment text styling */
        .commitment-text {
            font-size: 1.1rem;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 40px;
            padding: 0 15px;
        }
        
        /* Services container */
        .services-container-two {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .service-item-two {
            flex: 1;
            min-width: 250px;
            max-width: 280px;
        }
        
        .service-shape {
            height: 200px;
            background-color: #f0f4f9;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .service-image {
            width: 80%;
            height: 80%;
            object-fit: cover;
            border-radius: 5px;
            transition: transform 0.3s ease;
        }
        
        .service-image:hover {
            transform: scale(1.05);
        }
        
        .service-title-two {
            text-align: center;
            font-weight: 600;
            color: #1a3a6c;
            font-size: 1.2rem;
            padding-top: 5px;
        }
        
        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .main-title-two {
                font-size: 1.8rem;
            }
            
            .commitment-text {
                font-size: 1rem;
                padding: 0 10px;
            }
            
            .services-container-two {
                flex-direction: column;
                align-items: center;
            }
            
            .service-item-two {
                width: 100%;
                max-width: 350px;
            }
            
            .corner-border-two {
                padding: 20px 15px;
            }
        }
        
        @media (max-width: 480px) {
            .main-title-two {
                font-size: 1.5rem;
                line-height: 1.3;
            } 
            
            .service-shape {
                height: 180px;
            }
        }
        
        /* Decorative elements */
        .security-icon {
            color: #2c5aa0;
            font-size: 1.8rem;
            margin-right: 10px;
            vertical-align: middle;
        }
        
        .page-header-two {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }
        
        .header-icon-two {
            color: #2c5aa0;
            font-size: 2.5rem;
            margin-right: 15px;
        }
 




  
      /* contact us page css */
  .container-map {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Title with Corner-Only Borders */
        .title-section-map {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px 0;
        }

        .corner-border-title-map {
            display: inline-block;
            padding: 20px 40px;
            position: relative;
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .corner-border-title-map::before, .corner-border-title-map::after,
        .corner-border-title-map > span::before, .corner-border-title-map > span::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 3px solid #3498db;
        }

        .corner-border-title-map::before {
            top: 0;
            left: 0;
            border-right: none;
            border-bottom: none;
        }

        .corner-border-title-map::after {
            top: 0;
            right: 0;
            border-left: none;
            border-bottom: none;
        }

        .corner-border-title-map > span::before {
            bottom: 0;
            left: 0;
            border-right: none;
            border-top: none;
        }

        .corner-border-title-map > span::after {
            bottom: 0;
            right: 0;
            border-left: none;
            border-top: none;
        }

        .light-blue {
            color: #3498db;
        }

        .black-1 {
            color: #2c3e50;
        }

        /* Info Boxes with Corner-Only Borders */
        .info-section-map {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .info-box-map {
            flex: 0 0 calc(25% - 20px);
            padding: 25px 20px;
            margin-bottom: 20px;
            position: relative;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            animation: fadeIn 1s ease-out;
        }

        .info-box-map:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .info-box-map::before, .info-box-map::after,
        .info-box-map > div::before, .info-box-map > div::after {
            content: '';
            position: absolute;
            width: 15px;
            height: 15px;
            border: 2px solid #3498db;
            transition: all 0.3s ease;
        }

        .info-box-map::before {
            top: 0;
            left: 0;
            border-right: none;
            border-bottom: none;
        }

        .info-box-map::after {
            top: 0;
            right: 0;
            border-left: none;
            border-bottom: none;
        }

        .info-box-map > div::before {
            bottom: 0;
            left: 0;
            border-right: none;
            border-top: none;
        }

        .info-box-map > div::after {
            bottom: 0;
            right: 0;
            border-left: none;
            border-top: none;
        }

        .info-box-map:hover::before, .info-box-map:hover::after,
        .info-box-map:hover > div::before, .info-box-map:hover > div::after {
            width: 25px;
            height: 25px;
            border-color: #2c3e50;
        }

        .info-icon {
            font-size: 2rem;
            color: #3498db;
            margin-bottom: 15px;
        }

        .info-title-info {
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        /* Content Section */
        .content-section-map {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
        }

        .map-section, .form-section-map {
            flex: 1;
            min-width: 300px;
            background-color: white;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .map-section::before, .map-section::after,
        .map-section > div::before, .map-section > div::after,
        .form-section-map::before, .form-section-map::after,
        .form-section-map > div::before, .form-section-map > div::after {
            content: '';
            position: absolute;
            width: 15px;
            height: 15px;
            border: 2px solid #3498db;
        }

        .map-section::before, .form-section-map::before {
            top: 0;
            left: 0;
            border-right: none;
            border-bottom: none;
        }

        .map-section::after, .form-section-map::after {
            top: 0;
            right: 0;
            border-left: none;
            border-bottom: none;
        }

        .map-section > div::before, .form-section-map > div::before {
            bottom: 0;
            left: 0;
            border-right: none;
            border-top: none;
        }

        .map-section > div::after, .form-section-map > div::after {
            bottom: 0;
            right: 0;
            border-left: none;
            border-top: none;
        }

        .section-title-map {
            margin-bottom: 20px;
            color: #2c3e50;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .map-placeholder {
            height: 400px;
            background-color: #e9f2fa;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3498db;
            font-size: 1.2rem;
            border: 1px dashed #3498db;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #2c3e50;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }

        .form-control:focus {
            border-color: #3498db;
            outline: none;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 14px 20px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #2980b9;
        }

        .statement {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #7f8c8d;
            text-align: center;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .info-box-info {
                flex: 0 0 calc(50% - 15px);
            }
        }

        @media (max-width: 768px) {
            .corner-border-title-map {
                font-size: 1.8rem;
                padding: 15px 30px;
            }

            .info-box-info {
                flex: 0 0 100%;
            }

            .content-section-map {
                flex-direction: column;
            }

            .map-section, .form-section-map {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .corner-border-title-map {
                font-size: 1.5rem;
                padding: 10px 20px;
            }

            .title-section-map {
                margin-bottom: 20px;
            }
        }

    
  /* our services page */
   
  /* ca career page */
     .container-career {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Corner-only borders frame */
        .corner-border-frame {
            position: relative;
            padding: 40px;
            margin-bottom: 40px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .corner-border-frame::before, .corner-border-frame::after,
        .corner-border-frame > .corner-top::before, 
        .corner-border-frame > .corner-top::after,
        .corner-border-frame > .corner-bottom::before, 
        .corner-border-frame > .corner-bottom::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            border: 2px solid #1a73e8;
        }

        .corner-border-frame::before {
            top: 0;
            left: 0;
            border-right: none;
            border-bottom: none;
        }

        .corner-border-frame::after {
            top: 0;
            right: 0;
            border-left: none;
            border-bottom: none;
        }

        .corner-top::before {
            top: 0;
            left: 0;
            border-right: none;
            border-bottom: none;
        }

        .corner-top::after {
            top: 0;
            right: 0;
            border-left: none;
            border-bottom: none;
        }

        .corner-bottom::before {
            bottom: 0;
            left: 0;
            border-right: none;
            border-top: none;
        }

        .corner-bottom::after {
            bottom: 0;
            right: 0;
            border-left: none;
            border-top: none;
        }

        /* Title styling */
        .careers-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .title-blue-career {
            color: #1a73e8;
            position: relative;
            display: inline-block;
        }

        .title-blue-career::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: #ffd700;
        }

        .title-black-career {
            color: #000;
        }

        /* Two column layout */
        .two-column-frame {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
        }

        .left-column, .right-column {
            flex: 1;
            background-color: white;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        /* Left column styles */
        .info-text-career {
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .links-list {
            list-style: none;
            margin-bottom: 25px;
        }

        .links-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

        .links-list li::before {
            content: '✓';
            color: #1a73e8;
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .links-list a {
            color: #1a73e8;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .links-list a:hover {
            color: #0d5bb9;
            text-decoration: underline;
        }

        .candidate-text {
            margin-bottom: 15px;
            font-weight: 500;
        }

        .requirements-list {
            list-style: none;
        }

        .requirements-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .requirements-list li::before {
            content: '✓';
            color: #1a73e8;
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2rem;
        }

        /* Right column styles */
        .image-container-career {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .image-box-career {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .image-box-career img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .image-box-career:hover img {
            transform: scale(1.05);
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .careers-title {
                font-size: 2.5rem;
            }

            .two-column-frame {
                flex-direction: column;
            }

            .left-column, .right-column {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .careers-title {
                font-size: 2rem;
            }

            .corner-border-frame {
                padding: 25px;
            }

            .left-column, .right-column {
                padding: 20px;
            }
        }
  /* JOB APPLICATION*/
    .container-ap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header Styles */
        .header-frame-ap {
            width: 100%;
            min-height: 200px;
            padding: 40px;
            margin-bottom: 40px;
            position: relative;
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .corner-borders {
            position: relative;
            height: 100%;
        }

        .corner-borders::before,
        .corner-borders::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 40px;
        }

        .corner-borders::before {
            top: 0;
            left: 0;
            border-top: 4px solid #3498db;
            border-left: 4px solid #3498db;
        }

        .corner-borders::after {
            bottom: 0;
            right: 0;
            border-bottom: 4px solid #3498db;
            border-right: 4px solid #3498db;
        }

        .title-container-ap {
            text-align: center;
            padding: 20px 0;
        }

        .title-ap {
            font-size: 3.5rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .title-blue-ap {
            color: #3498db;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .title-blue-ap::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background-color: #f1c40f;
        }

        .title-black-ap {
            color: #2c3e50;
        }

        /* Form Styles */
        .form-frame {
            width: 100%;
            padding: 40px;
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }

        .form-title {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ecf0f1;
        }

        .form-group {
            margin-bottom: 25px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="number"],
        textarea,
        select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: border 0.3s;
        }

        input:focus,
        textarea:focus,
        select:focus {
            border-color: #3498db;
            outline: none;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        .checkbox-group {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .checkbox-item input {
            width: auto;
        }

        .days-container {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
            margin-top: 10px;
        }

        .day-checkbox {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .day-checkbox:hover {
            background-color: #f8f9fa;
        }

        .day-checkbox input {
            margin-bottom: 5px;
        }

        .submit-btn {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
            margin-top: 20px;
        }

        .submit-btn:hover {
            background-color: #2980b9;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-frame, .form-frame {
                padding: 20px;
            }

            .title-ap {
                font-size: 2.5rem;
            }

            .days-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .checkbox-group {
                flex-direction: column;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .title-ap {
                font-size: 2rem;
            }

            .days-container {
                grid-template-columns: 1fr;
            }
        }

  /* Area page css*/


  /*cities*/
    .container-cities {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header Section */
        .header-cities {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px 0;
            position: relative;
        }
        
        .title-container-cities {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .vertical-line-cities {
            width: 4px;
            height: 80px;
            background-color: #3498db;
            margin: 0 20px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 0.5; }
            50% { opacity: 1; }
            100% { opacity: 0.5; }
        }
        
        .title-cities{
            font-size: 2.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .light-blue {
            color: #3498db;
        }
        
        .black {
            color: white;
        }
        
        .details-cities {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: white;
        }
        
        /* Cities Grid Section */
        .cities-section {
            margin-bottom: 50px;
        }
        
        .section-title-cities {
            text-align: center;
            margin-bottom: 30px;
            color: skyblue;
            font-size: 1.8rem;
        }
        
        .cities-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .city-group {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            animation: fadeIn 1s ease-out;
            position: relative;
            overflow: hidden;
        }
        
        .city-group::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #3498db, transparent);
            animation: gridLine 3s infinite;
        }
        
        @keyframes gridLine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .city-item {
            padding: 8px 5px;
            border-bottom: 1px dashed #eee;
            font-size: 0.9rem;
        }
        
        .city-item:last-child {
            border-bottom: none;
        }
        
        /* Image Boxes Section */
        .image-boxes {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .image-box-cities{
            flex: 1;
            position: relative;
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
        .image-box-cities:hover {
            transform: translateY(-10px);
        }
        
        .image-box-cities::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 5px;
            z-index: 1;
        }
        
        .box-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: blur(0);
            transition: filter 0.3s ease;
        }
        
        .image-box-cities:hover .box-image {
            filter: blur(3px);
        }
        
        .box-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(52, 152, 219, 0.8);
            color: black;
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .image-box-cities:hover .box-overlay {
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .title-cities {
                font-size: 2rem;
            }
            
            .cities-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .image-boxes {
                flex-direction: column;
            }
            
            .image-box-cities {
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .title-container-cities {
                flex-direction: column;
            }
            
            .vertical-line-cities {
                height: 4px;
                width: 80px;
                margin: 10px 0;
            }
            
            .title-cities {
                font-size: 1.8rem;
                text-align: center;
                line-height: 1.3;
            }
            
            .cities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .title-cities {
                font-size: 1.5rem;
            }
            
            .cities-grid {
                grid-template-columns: 1fr;
            }
            
            .details-cities {
                font-size: 1rem;
            }
        }
    /* services page css */
/* services page / our services */

   .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header Section */
        .header-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 60px;
            padding: 40px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .title-container {
            display: flex;
            align-items: center;
            flex: 1;
        }

        .vertical-line {
            width: 4px;
            height: 120px;
            background: linear-gradient(to bottom, #0066cc, #003366);
            margin: 0 20px;
        }

        .main-title {
            font-size: 4rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .first-word {
            color: #0066cc;
        }

        .last-word {
            color: #000000;
        }

        .description {
            flex: 1;
            padding-left: 30px;
            border-left: 2px solid #e0e0e0;
        }

        .company-name {
            color: #0066cc;
            font-weight: 700;
            font-size: 1.2rem;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .triangle-container {
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 60px 60px 0;
            border-color: transparent #0066cc transparent transparent;
            animation: triangleAnimation 3s infinite alternate;
        }

        @keyframes triangleAnimation {
            0% {
                border-color: transparent #0066cc transparent transparent;
            }
            100% {
                border-color: transparent #003366 transparent transparent;
            }
        }

        .service-icon {
            font-size: 2.5rem;
            color: #0066cc;
            margin-bottom: 15px;
        }

        .service-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #003366;
        }

        .service-description {
            font-size: 0.95rem;
            color: #555;
        }

        /* Mobile Responsive */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-section {
                flex-direction: column;
            }

            .title-container {
                margin-bottom: 30px;
                justify-content: center;
            }

            .vertical-line {
                display: none;
            }

            .main-title {
                font-size: 3rem;
            }

            .description {
                padding-left: 0;
                border-left: none;
                border-top: 2px solid #e0e0e0;
                padding-top: 20px;
            }
        }

        @media (max-width: 576px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .main-title {
                font-size: 2.5rem;
            }
        }


/* FAQ PAGE CSS */
/* Freqently asked question formate */


   .container-fa {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header Styles */
        .header-fa {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            background-color: white;
        }

        .title-container-faa {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
        }

        .vertical-line-fa {
            width: 4px;
            height: 60px;
            background-color: #2c3e50;
            margin: 0 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scaleY(1); }
            50% { transform: scaleY(1.2); }
            100% { transform: scaleY(1); }
        }

        h5 {
            color:#2c3e50;
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* FAQ Section Styles */
        .faq-container {
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            background-color: white;
        }

        .faq-question {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            cursor: pointer;
            background-color: #3498db;
            color: white;
            transition: background-color 0.3s;
        }

        .faq-question:hover {
            background-color: #2980b9;
        }

        .checkmark {
            margin-right: 15px;
            font-size: 1.5rem;
            transition: transform 0.3s;
        }

        .faq-question.active .checkmark {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: white;
        }

        .faq-answer.show {
            padding: 20px;
            max-height: 500px;
        }

        /* Boxes Section Styles */
        .boxes-container-fa {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            gap: 30px;
        }

        .box-fa {
            flex: 1;
            position: relative;
            height: 300px;
            overflow: hidden;
            border-top: 4px solid #e74c3c;
            border-bottom: 4px solid #e74c3c;
            animation: box-pulse 3s infinite;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            background-color: white;
        }

        @keyframes box-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        .box-image {
            width: 100%;
            height: 70%;
            object-fit: cover;
        }

        .box-title-fa {
            padding: 15px;
            text-align: center;
            font-weight: bold;
            font-size: 1.2rem;
            color: #2c3e50;
            background-color: white;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .title-container-faa {
                flex-direction: column;
            }
            
            .vertical-line-fa {
                height: 4px;
                width: 60px;
                margin: 10px 0;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .boxes-container-fa {
                flex-direction: column;
            }
            
            .box-fa {
                margin-bottom: 30px;
            }
        }








  
      




  