* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            font-optical-sizing: auto;
            font-style: normal;
            font-variation-settings:
                "wdth" 100;
        }

        @font-face {
            font-family: 'Roboto';
            src: url('fonts/Roboto-Regular.ttf') format('truetype');
            font-weight: 400;
        }

        @font-face {
            font-family: 'Roboto';
            src: url('fonts/Roboto-Bold.ttf') format('truetype');
            font-weight: 700;
        }

        section{
            padding: 50px 0;
        }

        .section-title {
            text-align: center;
            margin: 0;
        }

        .section-title span {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a3a52;
            margin-bottom: 10px;
        }

        .section-title p {
            font-size: 1.8rem;
            color: #f4a460;
            font-weight: 600;
        }

        /* Animation-css */

        @keyframes fadeInUp {
            from {
                transform: translate3d(0,40px,0)
            }

            to {
                transform: translate3d(0,0,0);
                opacity: 1
            }
        }

        @-webkit-keyframes fadeInUp {
            from {
                transform: translate3d(0,40px,0)
            }

            to {
                transform: translate3d(0,0,0);
                opacity: 1
            }
        }

        .animated {
            animation-duration: 1s;
            animation-fill-mode: both;
            -webkit-animation-duration: 1s;
            -webkit-animation-fill-mode: both
        }

        .animatedFadeInUp {
            opacity: 0
        }

        .fadeInUp {
            opacity: 0;
            animation-name: fadeInUp;
            -webkit-animation-name: fadeInUp;
        }


        .fadein {
            opacity: 0;
            transition: all 2s;
            transform: translate(0, 100px);
        }

        .fadein.visible {
            opacity: 1;
            transform: translate(0, 0);
        }

        .drop-in {
            animation: drop-in 1s ease 200ms backwards;
        }

        .drop-in-2 {
            animation: drop-in 1200ms ease 500ms backwards;
        }

        @keyframes drop-in {
            from {
                opacity: 0;
                transform: translateY(-100px);
            }
            to {
                opacity: 1;
                transform: translate(0px);
            }
        }


        /* Top Header */
        .top-header {
            background: linear-gradient(135deg, #052651 0%, #0f2636 100%);
            padding: 10px 0;
            color: white;
            font-size: 13px;
        }

        .top-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .top-header-left {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }

        .top-header-left a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.3s;
        }

        .top-header-left a:hover {
            opacity: 0.8;
        }

        .top-header-right {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .social-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: opacity 0.3s;
            margin-left: 8px;
        }

        .social-links a:hover {
            opacity: 0.8;
        }

        .icon-circle {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 6px;
        }

        .email-icon {
            background-color: white;
            color: #052651;
        }

        .phone-icon {
            background-color: #4caf50;
            color: white;
        }

        /* Main Header/Navbar */
            .main-header {
            background-color: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            color: #052651;
            font-size: 20px;
            text-decoration: none;
        }

        .logo img{
            max-width: 100px;
        }

        .logo-icon {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #d4a574 0%, #c19556 100%);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-main {
            font-size: 16px;
            font-weight: 700;
            color: #052651;
        }

        .logo-sub {
            font-size: 10px;
            color: #d4a574;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .navbar{
            padding: 0;
        }

        .navbar-menu {
            display: flex;
            gap: 30px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .navbar-menu li {
            position: relative;
        }

        .navbar-menu a {
            color: #052651;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s;
            padding: 0 8px;
            display: block;
        }

        .navbar-menu a:hover {
            color: #d4a574;
        }

        .navbar-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #d4a574;
            transition: width 0.3s;
        }

        .navbar-menu a:hover::after {
            width: 100%;
        }

        /* Services Item */
        .services-item {
            position: relative;
        }

        .services-link {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Dropdown Menu */
        .dropdown-menu-custom {
            position: absolute;
            top: calc(100% + 0px);
            left: 0;
            background-color: white;
            border: 1px solid #eee;
            border-radius: 4px;
            min-width: 200px;
            list-style: none;
            padding: 0;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1000;
        }

        .services-item:hover .dropdown-menu-custom {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }

        .dropdown-menu-custom li {
            position: static;
        }

        .dropdown-menu-custom a {
            color: #052651;
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 500;
            display: block;
            transition: all 0.3s;
        }

        .dropdown-menu-custom a::after {
            display: none !important;
        }

        .dropdown-menu-custom a:hover {
            color: #d4a574;
            background-color: #f8f9fa;
            padding-left: 25px;
            border-left: 4px solid;
        }

        .dropdown-arrow {
            font-size: 11px;
            display: inline-block;
            transition: transform 0.3s;
        }

        .services-item:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .cta-button {
            background-color: #052651;
            color: white;
            padding: 10px 24px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: #052651;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(26, 58, 82, 0.3);
        }

        .navbar-toggler {
            border: none;
            color: #052651;
        }

        .navbar-toggler:focus {
            box-shadow: none;
            outline: 1px solid #052651;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .navbar-menu {
                gap: 15px;
                padding: 15px 0;
            }

            .navbar-menu a {
                font-size: 15px;
            }

            .navbar-collapse {
                border-top: 1px solid #eee;
            }

            .dropdown-menu-custom {
                position: static;
                opacity: 0;
                visibility: hidden;
                max-height: 0;
                overflow: hidden;
                transform: none;
                box-shadow: none;
                border: none;
                margin: 0;
                padding: 0;
                pointer-events: none;
            }

            .services-item:hover .dropdown-menu-custom,
            .services-item.active .dropdown-menu-custom {
                opacity: 1;
                visibility: visible;
                max-height: 500px;
                padding: 8px 0 8px 20px;
                border-left: 2px solid #d4a574;
                pointer-events: auto;
            }

            .dropdown-menu-custom a {
                padding: 8px 10px;
            }

            .dropdown-menu-custom a:hover {
                padding-left: 15px;
            }
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 16px;
            }

            .logo-main {
                font-size: 14px;
            }

            .navbar-menu {
                gap: 0;
                flex-direction: column;
            }

            .navbar-menu a {
                font-size: 14px;
                padding: 8px 0;
            }

            .cta-button {
                width: 100%;
                text-align: center;
                padding: 12px 20px;
            }
        }

        @media (max-width: 576px) {
            .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 16px;
            }

            .logo {
                gap: 6px;
            }

            .navbar-menu a {
                font-size: 13px;
            }
        }

        /* hero-slider */

        .hero-slider-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background: #0a0e27;
        }

        .hero-slides-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }

        .hero-slide.active {
            opacity: 1;
            z-index: 1;
        }

        .hero-slide.prev {
            opacity: 0;
            z-index: 0;
        }

        .slide-image {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 14, 39, 0.5) 0%, rgba(102, 126, 234, 0.2) 100%);
            z-index: 1;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            color: white;
            width: 90%;
            max-width: 900px;
        }

        .hero-slide.active .hero-content span {
            animation: slideInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
        }

        .hero-slide.active .hero-content .subtitle {
            animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
        }

        .hero-slide.active .hero-content .description {
            animation: fadeInScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
        }

        .hero-slide.active .cta-buttons {
            animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .hero-content span {
            font-size: clamp(36px, 10vw, 72px);
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 8px 16px rgba(0, 0, 0, 0.4);
            letter-spacing: -1px;
            line-height: 1.2;
            background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: clamp(16px, 4vw, 28px);
            font-weight: 600;
            color: #a5f3fc;
            margin-bottom: 15px;
            text-shadow: 1px 4px 8px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .description {
            font-size: clamp(14px, 2.5vw, 18px);
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            position: relative;
            padding: 14px 45px;
            font-size: 16px;
            font-weight: 600;
            border: 2px solid transparent;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-decoration: none;
            display: inline-block;
            overflow: hidden;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: inherit;
            z-index: -1;
            transition: left 0.3s ease;
        }

        .cta-btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
            color: white;
        }

        .cta-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-btn-secondary:hover {
            background: white;
            color: #667eea;
            transform: translateY(-3px);
        }

        /* Navigation Controls */
        .slider-nav {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .nav-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 2px solid transparent;
            position: relative;
        }

        .nav-dot:hover {
            background: rgba(255, 255, 255, 0.6);
            transform: scale(1.2);
        }

        .nav-dot.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: scale(1.4);
            box-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
            border-color: white;
        }

        .nav-dot.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid rgba(102, 126, 234, 0.6);
            border-radius: 50%;
            animation: dotPulse 1.5s infinite;
        }

        @keyframes dotPulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.8);
                opacity: 0;
            }
        }

        .nav-label {
            color: white;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin: 0 10px;
        }

        /* Arrow Navigation */
        .arrow-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 8;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .arrow-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-50%) scale(1.1);
        }

        .arrow-nav.prev {
            left: 30px;
        }

        .arrow-nav.next {
            right: 30px;
        }

        /* Slide Counter */
        .slide-counter {
            position: absolute;
            bottom: 50px;
            right: 40px;
            z-index: 10;
            color: white;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .slide-counter .current {
            font-size: 28px;
            font-weight: 800;
            color: #052651;
            display: inline-block;
            width: 30px;
            text-align: right;
        }

        /* Decorative Elements */
        .hero-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            top: 10%;
            left: 5%;
            animation: float 8s ease-in-out infinite;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            bottom: 10%;
            right: 10%;
            animation: float 10s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(50px);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-slider-container {
                height: 70vh;
            }

            .arrow-nav {
                width: 48px;
                height: 48px;
                font-size: 18px;
            }

            .arrow-nav.prev {
                left: 15px;
            }

            .arrow-nav.next {
                right: 15px;
            }

            .cta-buttons {
                gap: 12px;
            }

            .cta-btn {
                padding: 12px 35px;
                font-size: 14px;
            }

            .slider-nav {
                bottom: 30px;
                gap: 10px;
            }

            .nav-dot {
                width: 10px;
                height: 10px;
            }

            .nav-label {
                display: none;
            }

            .slide-counter {
                bottom: 30px;
                right: 20px;
                font-size: 12px;
            }

            .slide-counter .current {
                font-size: 24px;
            }

            .shape-1 {
                width: 250px;
                height: 250px;
            }

            .shape-2 {
                width: 200px;
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .hero-slider-container {
                height: 60vh;
            }

            .arrow-nav {
                width: 42px;
                height: 42px;
                font-size: 16px;
            }

            .arrow-nav.prev {
                left: 10px;
            }

            .arrow-nav.next {
                right: 10px;
            }

            .cta-btn {
                padding: 10px 25px;
                font-size: 12px;
            }

            .hero-content span {
                font-size: clamp(28px, 8vw, 48px);
            }

            .cta-buttons {
                gap: 10px;
                flex-direction: column;
            }

            .cta-btn {
                width: 100%;
            }

            .slide-counter {
                display: none;
            }

            .shape {
                display: none;
            }
        }


        /* about-page-css */

        .about-section{text-align: center;
            padding:80px 0;
        }

        .section-title span{
            font-size:35px;
            color: #052651;
            font-weight: 700;
            transition: cubic-bezier(0.075, 0.82, 0.165, 1);
        }
        
        .section-subtitle span{
            font-size:19px;
            font-weight: 600;
        }

        .floating-image {
            float: left;
            width: 50%;
            margin: 0 30px 20px 0;
        }
        
        .floating-image img {
            width: 100%;
            height: auto;
            border-radius: 50% 30px 30px 30px;
        }
        
        .content-text p{
            text-align: justify;
            line-height: 1.8;
            color: #333;
            font-size: 16px;
        }
        
        .highlight {
            color: #000;
            font-weight: 600;
        }
        
        .content-text::after {
            content: "";
            display: table;
            clear: both;
        }
        
        @media (max-width: 768px) {
            .floating-image {
                float: none;
                width: 100%;
                margin: 0 0 20px 0;
            }
        }

        .circle-logo{
            position: relative;
        }
        .circle-logo img {
            width: 200px;
            height: 200px;
            animation-name: spin;
            animation-duration: 5000ms;
            animation-iteration-count: infinite;
            animation-timing-function: linear; 
            position: absolute;
            top: 50px;
            left: 8%;
            z-index: 9;
        }
     

        @keyframes spin {
            from {
                transform:rotate(0deg);
            }
            to {
                transform:rotate(360deg);
            }
        }

        @media (max-width: 600px) {
            /* mobile-view-media-query */
            .circle-logo img {
                width: 100px;
                height: 100px;
                top: 160px;
                left: 50px;
                z-index: 9;
            }
        }

        .problems-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
            padding: 0 20px;
        }

        .problem-card {
            background: white;
            border-radius: 2px 40px;
            padding: 20px 20px 20px 0px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .problem-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            transform: translateY(-10px);
        }

        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            gap: 15px;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: #1a3a52;
            border-radius:0 100px 100px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            flex-shrink: 0;
        }

        .card-number {
            font-size: 2.2rem;
            font-weight: 300;
            color: #d0d0d0;
            letter-spacing: 3px;
        }

        .problem-card span {
            color: #1a3a52;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .problem-card p {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .highlight {
            font-weight: 600;
            color: #1a3a52;
        }

        .card-content{
            padding-left: 20px;
        }

        /* particle-css */

        .particles-section {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(117, 114, 113, 0.8) 10%, rgba(40, 49, 77, 0.8) 30%, rgba(29, 35, 71, 0.8) 50%, rgba(19, 25, 28, 0.8) 80%, rgba(15, 14, 14, 0.8) 100%), url(https://38.media.tumblr.com/tumblr_m00c3czJkM1qbukryo1_500.gif);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: 50% 50%;
        }

        .content {
            position: relative;
            z-index: 10;
            text-align: center;
        }

        .content span {
            font-size: 3.5em;
            margin-bottom: 20px;
            text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
            animation: fadeInDown 1s ease-out;
        }

        .content p {
            font-size: 1.3em;
            line-height: 1.6;
            animation: fadeInUp 1s ease-out 0.3s backwards;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .content span {
                font-size: 2.5em;
            }

            .content p {
                font-size: 1.1em;
            }
        }

        .team-section {
            background: #f8f9fa;
            padding: 60px 20px;
            margin-bottom: 60px;
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .team-card {
            background: #ffffff38;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .team-card span {
            color: #000000;
            font-size: 1.5rem;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .team-card .credentials {
            color: #f4a460;
            font-size: 0.9rem;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .team-card p {
            color: #ffffff;
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .expertise-list {
            /* background: #f8f9fa; */
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
        }
        .expertise-list:hover{
            transform: translateY(-10px);
        }

        .expertise-list p {
            margin: 0;
            color: #ffffff;
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .expertise-list ul {
            list-style: none;
            padding: 0;
        }

        .expertise-list li {
            color: #ffffff;
            font-size: 0.85rem;
            margin-bottom: 6px;
            padding-left: 15px;
            position: relative;
            list-style: none;
        }

        .expertise-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #f4a460;
        }

        /* Services Section */
        .services-section {
            background: white;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .service-card {
            background: #05265126;
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid #f4a460;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-left-color: #1a3a52;
        }

        .service-card span {
            color: #1a3a52;
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-card ul {
            list-style: none;
            padding: 0;
        }

        .service-card li {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
            line-height: 1.5;
        }

        .service-card li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #f4a460;
            font-weight: bold;
        }


        /* certificates-section */

        .certificates{
            background-color: #05265132;
            padding: 50px;
        }  

        .certidicate-section{
            padding: 20px;
        }

        .certidicate-section span{
            color: #1a3a52;
            font-size: 20px;
            font-weight: 600;
            align-items: center;
        }

        .certidicate-section ul {
            list-style: none;
            padding: 0;
        }

        .certidicate-section li {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
            line-height: 1.5;
        }

        .certidicate-section li:before {
            content: "○";
            position: absolute;
            left: 0;
            color: #052651;;
            font-weight: bold;
        }

        .certificate-image img{
            max-width:356px;
            width:100%;
            border-radius: 25px;
        }

        /* Section Styling */
        .why-choose-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7ff 0%, #f0f4ff 100%);
            position: relative;
            overflow: hidden;
            background-image: linear-gradient(135deg, rgb(245 247 255 / 40%) 0%, rgb(240 244 255 / 44%) 100%), url(images/bg4.png);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .why-choose-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: -100px;
            left: -100px;
            z-index: 0;
        }

        .why-choose-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -100px;
            right: -100px;
            z-index: 0;
        }

        .section-content {
            position: relative;
            z-index: 1;
        }

        /* Header */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-header .badge {
            display: inline-block;
            background: linear-gradient(135deg, #052651 0%, #052651 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .section-header span {
            font-size: clamp(32px, 5vw, 40px);
            font-weight: 800;
            color: #052651;
            margin-bottom: 20px;
            line-height: 1.2;
        }


        .section-header p {
            font-size: 18px;
            color: #303030;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(102, 126, 234, 0.1);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #052651 0%, #093e82 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #052651 0%, #093e82 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: white;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.15) rotate(-5deg);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .feature-card span {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Stats Section */
        .stats-section {
            background: white;
            border-radius: 20px;
            padding: 60px 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            margin-top: 60px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item span {
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 800;
            background: linear-gradient(135deg, #052651 0%, #093e82 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-item p {
            font-size: 16px;
            color: #666;
            font-weight: 600;
        }


        /* Responsive */
        @media (max-width: 768px) {
            .why-choose-section {
                padding: 60px 0;
            }

            .section-header {
                margin-bottom: 50px;
            }

            .section-header span {
                font-size: 32px;
            }

            .features-grid {
                gap: 25px;
            }

            .feature-card {
                padding: 30px 20px;
            }

            .stats-grid {
                gap: 30px;
            }

            .cta-btn-secondary {
                margin-left: 0;
                margin-top: 15px;
                display: block;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 15px 12px;
                font-size: 14px;
            }

            .comparison-table th {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .why-choose-section {
                padding: 40px 0;
            }

            .section-header span {
                font-size: 24px;
            }

            .feature-card {
                padding: 25px 15px;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }

            .feature-card span {
                font-size: 18px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .stat-item span {
                font-size: 36px;
            }

            .comparison-section span {
                font-size: 22px;
            }
        }


        /* testimonial-css */


        .carousel img {
            width: 70px;
            max-height: 70px;
            border-radius: 50%;
            margin-right: 1rem;
            overflow: hidden;
        }
        .carousel-inner {
            padding: 1em;
        }

        @media screen and (min-width: 576px) {
        .carousel-inner {
            display: flex;
            width: 90%;
            margin-inline: auto;
            padding: 1em 0;
            overflow: hidden;
        }
        .carousel-item {
            display: block;
            margin-right: 0;
            flex: 0 0 calc(100% / 2);
        }
        }
        @media screen and (min-width: 768px) {
        .carousel-item {
            display: block;
            margin-right: 0;
            flex: 0 0 calc(100% / 3);
        }
        }
        .carousel .card {
            margin: 0 0.5em;
            border: 0;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 3rem;
            height: 3rem;
            background-color: grey;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
        }

        /* contact-css */
        
        .contact-section {
            /* background: linear-gradient(135deg, #001a4d 0%, #0033cc 50%, #001a66 100%); */
            background-image:linear-gradient(135deg, rgb(5 38 81 / 94%) 0%, rgb(5 38 81 / 65%) 100%), url(images/bg6.avif);
            background-size: cover;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 40px 20px;
        }

        .contact-title {
            text-align: center;
            color: white;
            font-size: 3rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 60px;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .contact-info-col {
            color: white;
        }

        .contact-info-title {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 40px;
            letter-spacing: 1px;
        }

        .contact-info-item {
            display: flex;
            gap: 20px;
            margin-bottom: 35px;
            align-items: flex-start;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: #ffffff;
            min-width: 30px;
            margin-top: 5px;
        }

        .contact-info-content {
            flex: 1;
        }

        .contact-info-label {
            color: #a0a0a0;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .contact-info-text {
            color: rgb(255, 255, 255);
            font-size: 1.1rem;
            line-height: 1.6;
        }
        .contact-info-text a{
            color: #fff;
            text-decoration: none;
        }

        .contact-info-text a:hover{
            color: #ccc;
        }

        .form-col {
            background: white;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .form-title {
            font-size: 2rem;
            font-weight: 400;
            color: #333;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-control {
            border: none;
            border-bottom: 2px solid #e0e0e0;
            border-radius: 0;
            padding: 12px 0;
            font-size: 1rem;
            background: transparent;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-bottom-color: #0066ff;
            box-shadow: none;
            background: transparent;
        }

        .form-control::placeholder {
            color: #999;
        }

        textarea.form-control {
            resize: none;
            min-height: 120px;
        }

        .btn-send {
            background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
            border: none;
            color: white;
            padding: 12px 40px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            margin-top: 10px;
        }

        .btn-send:hover {
            background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
            color: white;
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 30px 15px;
                min-height: auto;
            }

            .contact-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .contact-row {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-info-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }

            .form-col {
                padding: 30px 20px;
            }

            .form-title {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }

            .contact-info-item {
                margin-bottom: 25px;
            }
        }

        @media (max-width: 480px) {
            .contact-section {
                padding: 20px 10px;
            }

            .contact-title {
                font-size: 1.5rem;
                margin-bottom: 30px;
            }

            .contact-row {
                gap: 30px;
            }

            .contact-info-title {
                font-size: 1.5rem;
            }

            .contact-info-text {
                font-size: 1rem;
            }

            .form-col {
                padding: 20px 15px;
            }

            .form-title {
                font-size: 1.3rem;
            }

            .form-group {
                margin-bottom: 18px;
            }
        }

        /* footer-css  */


        footer {
            background: linear-gradient(135deg, #052651db 0%, #052651 100%), url(images/shape1.png);
            background-position: center;
            color: #ffffff;
            padding-top: 50px;
            margin-top: 60px;
        }

        .footer-content {
            padding: 40px 0;
        }

        .footer-section span {
            color: #fff;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-section span::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #fff;
            border-radius: 2px;
        }

        .footer-section ul {
            margin-top: 25px;
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-section ul li a:hover {
            color: #fff;
            padding-left: 5px;
        }

        /* About Section */
        .footer-about {
            margin-bottom: 30px;
        }

        .footer-about img {
            max-width: 100px;
            margin-bottom: 20px;
        }

        .footer-about p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #e0e0e0;
            text-align: justify;
            margin-top: 25px;
        }

        /* Contact Info */
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 18px;
            gap: 15px;
            margin-top: 25px;
        }

        .contact-item i {
            color: #fff;
            font-size: 1.2rem;
            margin-top: 3px;
            min-width: 25px;
        }

        .contact-item p {
            margin: 0;
            color: #e0e0e0;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .contact-item a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-item a:hover {
            color: #fff;
            text-decoration: underline;
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #fff;
            color: #0f3d5c;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .social-icons a:hover {
            background-color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
            margin-top: 40px;
            text-align: center;
            color: #b0b0b0;
            font-size: 0.9rem;
        }

        .footer-bottom p a{
            color: #b0b0b0;
            text-decoration: none;
        }

        .footer-bottom p {
            margin: 0;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            footer {
                padding-top: 40px;
            }

            .footer-content {
                padding: 30px 0;
            }

            .footer-section span {
                margin-bottom: 20px;
                font-size: 1.1rem;
            }

            .footer-section ul li {
                margin-bottom: 10px;
            }

            .footer-section ul li a {
                font-size: 0.9rem;
            }

            .contact-item {
                margin-bottom: 15px;
            }

            .social-icons {
                justify-content: center;
            }

            .footer-bottom {
                padding: 20px 0;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 576px) {
            footer {
                padding-top: 30px;
            }

            .footer-content {
                padding: 20px 0;
            }

            .footer-section span {
                font-size: 1rem;
                margin-bottom: 18px;
            }

            .footer-about p {
                font-size: 0.9rem;
                text-align: left;
            }

            .contact-item {
                gap: 12px;
                margin-bottom: 14px;
            }

            .contact-item p {
                font-size: 0.9rem;
            }

            .social-icons a {
                width: 36px;
                height: 36px;
                font-size: 0.9rem;
            }
        }

        .go-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background-color: #052651;
            color: #fff;
            font-size: 22px;
            text-align: center;
            line-height: 45px;
            border-radius: 50%;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 999;
            border: 1px solid #fff;
        }

        .go-top-btn:hover {
            background-color: #2b2a27;
            transform: translateY(-4px);
        }


        .fixed-contact-btns {
            position: fixed;
            left: 20px;
            bottom: 30px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 999;
        }
        .fixed-contact-btns a:hover{
            transform: translateY(-4px);
        }
            
        /* Breadcrumb-css */


        .breadcrumb-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .background-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 38, 81, 0.6);
            display: flex;
            align-items: center;
            padding-left: 50px;
        }
        
        .breadcrumb-nav {
            font-size: 18px;
            font-weight: 500;
        }
        .title-head{
            font-size: 50px;
        }
        .breadcrumb-nav a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .breadcrumb-nav a:hover {
            color: #b6b6b6;
            text-decoration: underline;
        }
        
        .breadcrumb-separator {
            color: #ffffff;
            margin: 0 12px;
            font-weight: 300;
        }
        
        .breadcrumb-current {
            color: #052651;
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
        }
        
        .content-section {
            padding: 40px 50px;
            background: #f8f9fa;
        }
        
        .content-section h1 {
            color: #052651;
            margin-bottom: 15px;
            font-size: 32px;
        }
        
        .content-section p {
            color: #333;
            line-height: 1.6;
            font-size: 16px;
        }

        /* sitemap-section */

        .sitemap-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .sitemap-title {
            color: #2b2a28;
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        .sitemap-card {
            background-color: white;
            border: 2px solid #052651;
            border-radius: 8px;
            padding: 10px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: #2b2a28;
        }
        
        .sitemap-card:hover {
            background-color: #052651;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
            text-decoration: none;
        }
        
        .card-label {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .card-description {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .sitemap-card:hover .card-description {
            opacity: 1;
        }
        
        .category-section {
            margin-bottom: 40px;
        }
        
        .category-header {
            color: #052651;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #052651;
        }
        
        .main-links {
            margin-bottom: 50px;
        }
        
        @media (max-width: 768px) {
            .sitemap-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .category-header {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            
            .sitemap-card {
                padding: 15px;
            }
            
            .card-label {
                font-size: 1rem;
            }
        }

        .mission-vision-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
        }

        /* Cards */
        .mission-card, .vision-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(5, 38, 81, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(5, 38, 81, 0.2);
        }

        .card-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .mission-card:hover .card-image img,
        .vision-card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: 0 4px 15px rgba(5, 38, 81, 0.3);
        }

        .card-content {
            padding: 40px;
        }

        .card-content h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .card-content p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 0;
            font-size: 1rem;
        }

        /* Accent Line */
        .accent-line {
            width: 60px;
            height: 4px;
            background: var(--secondary-color);
            margin: 15px 0;
            border-radius: 2px;
        }

        /* Values Section */
        .values-section {
            padding: 50px 0;
            background: white;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .value-item {
            text-align: center;
            padding: 30px;
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #052651 0%, #052651 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 20px;
        }

        .value-item h4 {
            color: var(--primary-color);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .value-item p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-header h1 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .mission-vision-section {
                padding: 50px 0;
            }
        }