
        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #f5f5f5;
            padding: 40px 20px;
        } */

        .gss-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        /* MAIN TITLE */
        .gss-main-title {
            text-align: center;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 50px;
            color: #000;
            letter-spacing: 1px;
        }

        .gss-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 14px;
        }

        .gss-service {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            background: white;
            min-height: 350px;
            overflow: hidden;
        }

        .gss-row:nth-child(2) .gss-service:nth-child(1) .gss-service-image {
            order: 2;
        }

        .gss-row:nth-child(2) .gss-service:nth-child(1) .gss-service-content {
            order: 1;
        }

        .gss-row:nth-child(2) .gss-service:nth-child(2) .gss-service-image {
            order: 2;
        }

        .gss-row:nth-child(2) .gss-service:nth-child(2) .gss-service-content {
            order: 1;
        }

        .gss-service-image {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .gss-service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .gss-service-content {
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            background: #252525;
            color: white;
        }

        .gss-service-number {
            font-size: 48px;
            font-weight: 300;
            margin-bottom: 20px;
            opacity: 0.6;
            letter-spacing: 2px;
        }

        .gss-service-title {
            color: #449cde;
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .gss-service-description {
            font-size: 15px;
            line-height: 1.8;
            opacity: 0.8;
            max-width: 400px;
        }

        @media (max-width: 1024px) {
            .gss-row {
                grid-template-columns: 1fr;
            }

            .gss-service {
                min-height: 350px;
            }

            .gss-service-content {
                padding: 40px 30px;
            }

            .gss-service-number {
                font-size: 36px;
            }

            .gss-service-title {
                font-size: 24px;
            }
        }

        @media (max-width: 640px) {
            .gss-service {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .gss-service-content {
                padding: 30px 20px;
            }

            .gss-service-number {
                font-size: 28px;
            }

            .gss-service-title {
                font-size: 20px;
            }

            .gss-service-description {
                font-size: 14px;
            }
        }

        .gss-btn {
    margin-top: 25px;
    padding: 10px 26px;
    border: 2px solid #449cde;
    color: #449cde;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

.gss-btn:hover {
    background: #449cde;
    color: #fff;
}


/* banner css */
        #banner img {
                height: auto;
                object-fit: cover;
            }

            .carousel-caption {
                background: rgba(0, 0, 0, 0.5);
                padding: 20px;
                border-radius: 10px;
            }

            .carousel-caption h5 {
                color: #ffffff;
            }

            .carousel-caption p {
                color: #ffffff;
            }

            p.text-end-set {
                text-align: end;
            }

            @media screen and (max-width: 480px) {
                #banner img {
                    height: auto;
                    object-fit: cover;
                }

                p.text-end-set {
                    text-align: start !important;
                }
            }


/* contact us css start */

        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } */

        .shof-onesection {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .shof-container {
            max-width: 1100px;
            width: 100%;
        }

        .shof-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .shof-header h2 {
            color: white;
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 10px;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            letter-spacing: 2px;
        }

        .shof-header p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            font-weight: 300;
        }

        .shof-contacts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .shof-contact-box {
            background: white;
            border-radius: 20px;
            padding: 50px 35px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .shof-contact-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.5s;
        }

        .shof-contact-box:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.12);
        }

        .shof-contact-box:hover::before {
            animation: shine 0.5s;
        }

        @keyframes shine {
            0% { right: -50%; }
            100% { right: 150%; }
        }

        .shof-icon-large {
            font-size: 50px;
            margin-bottom: 20px;
            display: inline-block;
            animation: bounce 2s infinite;
        }

        .shof-contact-box:nth-child(2) .shof-icon-large { animation-delay: 0.2s; }
        .shof-contact-box:nth-child(3) .shof-icon-large { animation-delay: 0.4s; }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .shof-contact-box h3 {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
            text-align: center;
        }

        .shof-contact-box {
            background: white;
            border-radius: 20px;
            padding: 50px 35px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .shof-contact-box p {
            font-size: 14px;
            color: #555;
            line-height: 1.4;
            font-weight: 500;
            text-align: center;
        }

        .shof-contact-box a {
            color: #555555;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 600;
        }

        .shof-contact-box a:hover { color: #ff6b6b; }

        .shof-accent-line {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #feca57);
            margin-bottom: 20px;
            border-radius: 2px;
        }

        .shof-contact-box:nth-child(2) .shof-accent-line {
            background: linear-gradient(90deg, #48dbfb, #1dd1a1);
        }

        .shof-contact-box:nth-child(3) .shof-accent-line {
            background: linear-gradient(90deg, #ee5a6f, #ff6b6b);
        }

        @media (max-width: 768px) {
            .shof-header h2 { font-size: 32px; }
            .shof-contact-box { padding: 40px 25px; }
            .shof-icon-large { font-size: 40px; }
            .shof-contacts-grid { gap: 20px; }
        }

        @media (max-width: 600px) {
            body { padding: 20px 15px; }
            .shof-container { width: 100%; }
            .shof-header h2 { font-size: 26px; margin-bottom: 8px; }
            .shof-header p { font-size: 14px; }
            .shof-header { margin-bottom: 35px; }
            .shof-contacts-grid { grid-template-columns: 1fr; gap: 20px; }
            .shof-contact-box { padding: 35px 20px; border-radius: 16px; }
            .shof-icon-large { font-size: 38px; margin-bottom: 15px; }
            .shof-contact-box h3 { font-size: 18px; margin-bottom: 12px; }
            .shof-contact-box p { font-size: 13px; line-height: 1.8; }
            .shof-accent-line { width: 50px; height: 3px; margin-bottom: 15px; }
        }

        @media (max-width: 400px) {
            .shof-header h2 { font-size: 22px; letter-spacing: 0.5px; }
            .shof-contact-box { padding: 30px 18px; }
            .shof-icon-large { font-size: 34px; }
            .shof-contact-box h3 { font-size: 16px; }
            .shof-contact-box p { font-size: 12px; }
        }

        /* contact us css end  */


    

        /* testimonials css start */

        .page-wrapper-main {
            max-width: 1200px;
            margin: 0 auto;
        }

        .heading-primary-testimonial {
            text-align: center;
            color: #333;
            font-size: 2.5rem;
            margin-bottom: 23px;
            margin-top: 40px;
        }

        .feedback-grid-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .customer-review-card {
            background: #ffffff;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            padding: 30px;
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .customer-review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .rating-stars-display {
            color: #ffd700;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .feedback-message-content {
            color: #333333;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }

        .reviewer-details-section {
            display: flex;
            align-items: center;
            gap: 15px;
            border-top: 2px solid #e0e0e0;
            padding-top: 20px;
        }

        .profile-initials-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            background: linear-gradient(135deg, #623217 0%, #bc4e11 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: bold;
            font-size: 1.5rem;
        }

        .client-information-block {
            flex: 1;
        }

        .client-full-name {
            font-weight: bold;
            color: #000000;
            font-size: 1.1rem;
        }

        .client-job-position {
            color: #666666;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .heading-primary-testimonial {
                font-size: 2rem;
            }

            .feedback-grid-container {
                flex-direction: column;
                align-items: center;
            }

            .customer-review-card {
                max-width: 100%;
            }
        }
        .profile-initials-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* testimonial css end */

/* mission and vission css start  */

        .dship-tagul {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5)),
  url('assets/images/home/gms6.jpg') no-repeat center center fixed;
            /* background: url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?w=1920&h=1080&fit=crop') center/cover no-repeat fixed; */
            
            min-height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            position: relative;
        }

        .dship-tagul::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.7) 100%); */
            pointer-events: none;
            z-index: -1;
        }

        .dship-container {
            max-width: 70%;
            width: 100%;
            position: relative;
            z-index: 1;
            padding-top: 40px;
            padding-bottom: 46px;
        }

        .dship-header {
            text-align: center;
            margin-bottom: 50px;
            color: white;
        }

        .dship-header h1 {
            font-size: 3em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .dship-header p {
            font-size: 1.2em;
            opacity: 0.9;
        }

        .dship-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .dship-card {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .dship-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .dship-card h2 {
            color: #1e3ea4;
            font-size: 2em;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .dship-card p {
            color: #333;
            font-size: 1.1em;
            line-height: 1.8;
        }

        .dship-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #1e3ea4;
            color: white;
            border-radius: 50%;
            font-size: 1.5em;
        }

        .dship-values {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .dship-values h2 {
            color: #1e3ea4;
            font-size: 2em;
            margin-bottom: 25px;
            text-align: center;
        }

        .dship-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .dship-value-item {
            background: #f8f9ff;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #1e3ea4;
            text-align: center;
        }

        .dship-value-item strong {
            color: #1e3ea4;
            font-size: 1.1em;
        }

        .dship-value-item p {
            color: #555;
            margin-top: 10px;
            font-size: 0.95em;
        }

        @media (max-width: 768px) {
            .dship-cards {
                grid-template-columns: 1fr;
            }

            .dship-header h1 {
                font-size: 2em;
            }

            .dship-card h2 {
                font-size: 1.5em;
            }

            .dship-values h2 {
                font-size: 1.5em;
            }
        }

        /* mission and vission css end  */
