  @font-face {
  font-family: myFirstFont;
  src: url(Raleway\static\Raleway-Regular.ttf);
}
*{
    font-family: myFirstFont;
}
body{
    background: linear-gradient(135deg, #7595cf, #5581ce);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

 .navbar {
      background-color: #e4eaf5;
      padding: 15px 0;
      position: sticky;
      top: 0px;
      z-index: 111;
      /* border-bottom: 1px solid #576374; */
      /* box-shadow: 3px 3px 10px #1a2d45 */
    }
    .navbar-brand img {
      height: 30px;
    }
    .navbar-nav .nav-link {
      color: #1a2d45;
      font-weight: bold;
      margin-right: 20px;
      text-transform: uppercase;
      font-size: 14px;
      transition: all 0.2s ease-in-out;
    }
    .navbar-nav .nav-link:hover {
      color: #5f8ad7;
      transform: scale(1.2);
      border-bottom: 2px solid #5f8ad7;
    }


    .collapse{
        visibility: visible !important;
    }


    /* main section */
     .main-section{
        /* background: url('./images/Screenshot_2025-06-21_122542-removebg-preview.png') no-repeat top right; */
        padding: 60px 20px;
    } 


    .main-heading {
      color: #1a2d45;
      font-size: 3rem;
      font-weight: 700;
    }
    .sub-heading {
      color: #ffffff;
      font-size: 2rem;
      font-weight: 600;
      margin: 20px 0px;
    }
    
    .main-text {
      color: #1a2d45;
      font-size: 1.1rem;
      line-height: 1.6;
      letter-spacing: 1.5px;
      margin-bottom: 2rem;
      max-width: 500px;
    }

    /* white heading */
    .white{
        color: white;
        font-size: 2.5rem;
    margin-bottom: 40px;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    position: relative;
        /* font-weight: 700; */
    }

    .white::after{
    content: '';
    width: 60px;
    height: 4px;
    background: #1e3a8a;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    }


        /* Contact form Section */
        .contact-section {
            padding: 20px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            color: #fff;
            /* backdrop-filter: blur(10px); */
            position: relative;
            z-index: 1;
        }
        .contact-row{
            padding: 40px 20px;
        }

        .contact-section h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: #1a2d45;
            position: relative;
        }

        .contact-form {
            max-width: 400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            backdrop-filter: blur(10px);
            gap: 15px;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 15px;
            border: none;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #e0e0e0;
        }

        .contact-form button {
            background: #283f60;
            color: #fff;
            padding: 15px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .contact-form button:hover {
            transform: scale(1.05);
        }



    /* section industries  */
    /* #industries{
        background-color: #99d7f7;
    } */

  .owl-carousel .card {
            border: 1px solid #ddd;
            border-radius: 8px;
            background-color: #79a3ed;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 1.5rem;
            margin: 0.5rem;
            text-align: center;
            opacity: 0.8;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.2s ease-in-out;
        }
        .owl-carousel .owl-dots {
            margin-top: 1rem;
        }
    .owl-carousel .card:hover{
        transform: scale(1.1);
        border-radius: 8px;
    }

    

    h2.text-xl.text-blue-900 {
        letter-spacing: 1px;
    }

        /* service section */
        .background {
            
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            opacity: 0.3;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800"><defs><filter id="f1" x="0" y="0"><feTurbulence type="fractalNoise" baseFrequency="0.01" numOctaves="2" result="turbulence"/><feDisplacementMap in="SourceGraphic" in2="turbulence" scale="50" xChannelSelector="R" yChannelSelector="G"/></filter></defs><rect width="800" height="800" fill="rgba(255,255,255,0.1)" filter="url(#f1)"/></svg>') center/cover no-repeat;
        }


        .services-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            color: #fff;
            position: relative;
            z-index: 1;
        }

        .services-section h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            /* text-transform: uppercase; */
            letter-spacing: 2px;
            position: relative;
        }

        .services-section h2::after {
            content: '';
            width: 60px;
            height: 4px;
            background: #1e3a8a;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            padding: 20px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2)); */
            /* transform: translateX(-100%); */
            /* transition: transform 0.5s ease; */
        }

        .service-card:hover::before {
            transform: translateX(100%);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .service-icon {
            font-size: 2.5rem;
            color: #214168;
            margin-bottom: 20px;
            display: inline-block;
            /* transition: transform 0.3s ease; */
        }

        /* .service-card:hover .service-icon {
            animation: bounce 0.5s ease;
        } */

        /* @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        } */

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1e3a8a;
        }

        .service-card p {
            font-size: 1rem;
            color: #e0e0e0;
            line-height: 1.6;
            flex-grow: 1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .services-section h2 {
                font-size: 2rem;
            }

            .service-card {
                padding: 20px;
                min-height: 280px;
            }

            .service-icon {
                font-size: 2rem;
            }

            .service-card h3 {
                font-size: 1.3rem;
            }

            .service-card p {
                font-size: 0.9rem;
            }

        .shape-circle, .shape-square {
            width: 40px; height: 40px; 
            }
        .shape-triangle { 
            border-left: 25px solid transparent; 
            border-right: 25px solid transparent; 
            border-bottom: 40px solid #22f156; 
        }
        }

        @media (max-width: 480px) {
            .services-section {
                padding: 40px 10px;
            }

            .services-section h2 {
                font-size: 1.8rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                min-height: 260px;
            }

        

        }



        /* Testimonial Section */
        .testimonial-section {
            padding: 50px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            color: #fff;
            position: relative;
            z-index: 1;
        }

        .testimonial-section h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: white;
            position: relative;
        }

        .testimonial-section h2::after {
            content: '';
            width: 60px;
            height: 4px;
            background: #1e3a8a;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .testimonial-card {
            background: rgba(26, 45, 69, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .testimonial-card p {
            font-size: 1rem;
            color: #e0e0e0;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .testimonial-card h4 {
            font-size: 1.2rem;
            color: #00a9ff;
        }



        /* About Section */
        .about-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            color: #fff;
            position: relative;
            z-index: 1;
        }

        .about-section h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: #ffffff;
            position: relative;
        }

        .about-section h2::after {
            content: '';
            width: 60px;
            height: 4px;
            background: #1e3a8a;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
            font-size: 1rem;
            color: #e0e0e0;
            line-height: 1.6;
        }

        /* contact-section */
        .contact-section{
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            color: #fff;
            position: relative;
            z-index: 1;
        }
        .contact-section h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: #ffffff;
            position: relative;
        }
        .contact-section h2::after {
            content: '';
            width: 60px;
            height: 4px;
            background: #1e3a8a;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* footer */

     .footer-bg {
            background:#1a2d45;
            letter-spacing: 1px;
            padding: 20px 0;
        }