/*
:root { 
 --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #6062d6; 
  --accent-color: #2c1acc; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff;
}
.light-background {
  --background-color: #f4f5fe;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1717df;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #6e6c7e;
  --contrast-color: #ffffff;
}*/

 :root {
            --primary: #0056b3;
            --secondary: #00a896;
            --accent: #ff6b35;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --text: #343a40;
            --navy:#000080;
            --ca-blue: #1a3a6c;
            --ca-gold: #c9a227;
            --ca-light: #f5f7fa;
            --ca-dark: #2c3e50;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            /*font-family: 'Playfair Display', serif;*/
            color: var(--dark);
            line-height: 1.6;
            background-color: #e3eae1;
            overflow-x: hidden;
        }
        
        h1, h2 {
            font-family: 'Playfair Display', serif;
            /*font-family: 'Montserrat', sans-serif;*/
            color: #001ab3;
            margin-bottom: 2rem;
            font-weight:700;
        }
        h3,h4 {
            font-family: 'Playfair Display', serif;
            /*font-family: 'Montserrat', sans-serif;*/
            color: #001ab3;
            margin-bottom: 2rem;
            
        }


        
        .container {
            width: 100%;
            
            margin: 0 auto;
            padding: 0 20px;
        }
         
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color:  #474444;
  padding: 10px 0;
  scroll-margin-top: 50px;
  
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 24px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb,  #ffffff, transparent 50%);
  position: relative;
}

.section-title h2::after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 4px;
          background: var(--secondary);
        }

.section-title div {
  color:  #6062d6;
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Nav Bar
----------------------------------------------------------------*

    /* Navigation Bar Styles */
    #navbar {
     transition: all 0.3s ease;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
       /*padding: 10px 0;
      background: linear-gradient(60deg, #4f82a4 20%, var(--secondary)80%);*/
      background:linear-gradient(60deg, #3d8fc7 40%, #67b4ac 60%);
 
    }
    .navbar-brand
    {
      font-size: clamp(18px, calc(16px + 1vw), 32px);
      font-weight:400;
       color: black;  
      
    }
   
    /* Logo styling */
    .navbar-brand img.logo {
      height: 70px;
      width: 80px;
      transition: all 0.3s ease;
       color: black;
    }

    /* Nav item styling */
    .navbar-nav .nav-item {
      margin: 0 8px;
      position: relative;
    }

    .navbar-nav .nav-link {
      color: black;
      font-weight: 500;
      /*padding: 8px 12px;*/
      font-size:17px;
      transition: all 0.3s ease;
      position: relative;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color:var(--primary);
    }
    

    /* Dropdown menu styling */
    .dropdown-menu {
      border: none;
      font-weight: 500;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      margin-top: 10px;
      padding: 10px 0;
    }

    .dropdown-item {
      padding: 8px 20px;
      font-weight: 500;
      font-size:16px;
      transition: all 0.2s ease;
    }

    .dropdown-item:hover {
      background-color: #f8f9fa;
      color: #26b280;
    }

 .dropdown:hover .dropdown-menu {
  display: block;
  border-style: none;
}
    
    .dropdown-item.active, 
    .dropdown-item.active:hover,
    .dropdown-item.active:focus {
      background-color: #26b280;
      color: white;
      font-weight: 500;
    }

    /* Mobile specific styles */
    .navbar-toggler {
      border: none;
      padding: 0.5rem;
      font-size: 1.25rem;
      line-height: 1;
      transition: all 0.3s ease;
    }

    .navbar-toggler:focus {
      box-shadow: none;
      outline: none;
    }

    .navbar-toggler.collapsed .close-icon {
      display: none;
    }

    .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
      display: none;
    }

    /* Mobile menu styling */
    @media (max-width: 991.98px) {
      #navbar {
        padding: 5px 0;
      }
      
      .navbar-brand img.logo {
        height: 60px;
      }
      
    
      
      .navbar-nav {
        padding: 0 15px;
      }
      
      .nav-item {
        margin: 5px 0;
        padding: 8px 0;
      }
      
      .nav-item:last-child {
        border-bottom: none;
      }
      
      .dropdown-menu {
        box-shadow: none;
        border-left: 3px solid #007bff;
        margin: 5px 0 5px 15px;
        padding: 0;
      }
      
      .dropdown-item {
        padding: 8px 15px;
      }
      
      /* Mobile dropdown arrow animation */
      .dropdown-toggle::after {
        display: none;
      }
      
      .dropdown-mobile-arrow {
        transition: transform 0.3s ease;
      }
      
      .dropdown-toggle[aria-expanded="true"] .dropdown-mobile-arrow {
        transform: rotate(180deg);
      }
      
      /* Active dropdown styling for mobile - FIX ADDED */
      .dropdown:hover .dropdown-menu {
        display: block;
      }
    }

    /* Scrolled state */
    .navbar-scrolled {
      padding: 8px 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-scrolled .navbar-brand img.logo {
      height: 35px;
    }

    /* Desktop specific enhancements */
    @media (min-width: 992px) {
      .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: visible;
        transform: translateY(10px);
        transition: all 0.3s ease;
        
      }
      
      .dropdown-menu.show,
      .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      
    }
    /* Fix for 320px screens */
    @media (max-width: 320px) {
      .container-fluid {
        padding-left: 8px;
        padding-right: 8px;
      }
      
      .navbar-brand {
        max-width: 60%;
        font-size: 14px;
      }
      
      .navbar-brand img.logo {
        height: 50px;
      }
      
      .navbar-toggler {
        padding: 0.25rem;
        font-size: 1rem;
      }
      
      .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
      }
    }

    /* Additional optimization for small screens */
    @media (max-width: 360px) {
      .navbar-brand {
        max-width: 65%;
        font-size: 15px;
      }
    }
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#navbar.hero {
 background-color:transparent;
}

.hero {
  width: 100%;
  min-height: 90vh;
  position: relative;
  padding: 120px 0 120px 0;
  display: flex;
  align-items: center;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  
}

.hero:before {
  content: "";
  background:rgb(61 69 56 / 55%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  /*background-image:url('image/const.jpeg');*/
}

.hero h1 {
  margin: 0 0 20px 0;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  line-height: 56px;
  color: white;
}

.hero h3  {
  color:white;

}

.hero p {
  color: white;
  font-weight:500;
  margin: 5px 0 30px 0;
  font-size: 18px;
  
}

.hero .btn-get-started {
  color: #ffffff;
  background: #1710e0;
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #1710e0, transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color:  #ffffff;
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--navy);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--secondary);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #ffffff;
  opacity: 0.2;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------
        CA Section
--------------------------------------------*/
 .ca-container {
            width: 100%;
            max-width: 95%;
            margin: 0 auto;
            padding: 20px 0;
        }
.section-center h2 {
           font-size: 2.2rem;
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        .section-center h2:after {
           content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
       
        .tagline {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            font-weight: 300;
        }
        .ca-section-btn {
            display: inline-block;
            background: var(--ca-gold);
            color: white;
            padding: 14px 35px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 2px solid var(--ca-gold);
            text-align:left;
        }
        .ca-section-btn:hover {
            background: transparent;
            color: var(--ca-gold);
            transform: translateY(-3px);
        }
        /*.btn-outline {
            background: transparent;
            border: 2px solid white;
            margin-left: 15px;
        }*/
        .ca-section-btn-outline:hover {
            background: white;
            color: var(--ca-blue);
        }
       
        .ca-section {
            background: #e3eae1;
            border-radius: 8px;
            
            padding: 30px;
            text-align:justify;
            
        }
        .section-center {
            text-align: center;
            
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            padding:20px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 0px 30px;
        }
        .ca-service-card {
            border-left: 4px solid var(--ca-gold);
            padding: 25px;
            background: var(--ca-light);
            transition: all 0.3s ease;
        }
        .ca-service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
        .ca-service-card h3 {
            color: var(--ca-blue);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .ca-service-card h3:before {
            content: '✓';
            background: var(--ca-blue);
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 0.9rem;
        }
        /*.compliance-badge {
            background: var(--ca-blue);
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.85rem;
            display: inline-block;
            margin-top: 15px;
            font-weight: 600;
        }*/
        .ca-benefit-card {
            text-align: center;
            padding: 30px;
            border: 3px solid #35a39b;
            border-radius: 8px;
        }
        .ca-benefit-icon {
            font-size: 2.8rem;
            color: var(--ca-gold);
            margin-bottom: 20px;
        }
        .ca-benefit-card h3 {
            font-size: 1.6rem;
            color: var(--ca-blue);
            margin-bottom: 15px;
        }
        .ca-process-container {
            counter-reset: process;
            position: relative;
            max-width: fit-content;
            margin: auto;
        }
        .ca-process-container:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 50px;
            height: calc(100% - 80px);
            width: 2px;
            background: #156ed6;
            z-index: 1;
        }
        .ca-process-step {
            position: relative;
            padding: 30px 30px 30px 100px;
            margin-bottom: 30px;
            background: #c4d4af96;
            border-radius: 8px;
            z-index: 2;
        }
        .ca-process-step:before {
            counter-increment: process;
            content: counter(process);
            position: absolute;
            left: 30px;
            top: 30px;
            width: 40px;
            height: 40px;
            background: #29a290f2;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            z-index: 3;
        }

@media (max-width: 480px){
.grid-2 {
      grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
      padding: 0 15px;
          }
  .grid-3 {
      grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
      padding: 0 15px;
          }
        }
/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .grid-2 p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .ca-section {
        padding: 20px;
    }
    
    .ca-section-btn {
        padding: 12px 25px;
        font-size: 0.85rem;
        display: block;
        text-align: center;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .grid-2 {
        gap: 15px;
        padding: 10px;
    }
    
    .grid-2 p {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .ca-section {
        padding: 15px;
    }
    
    .grid-2 ul li {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
}


/*-----------------------------------------
          Why Choose Us                   
------------------------------------------*/
      .choose-section {
            padding: 20px;
        }
        .who {
           text-align: center;
           
        }

        .who h2 {
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .who h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }


        .choose-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            overflow: hidden;
            padding:10px;
            
           
            
        }

        .choose-image {
            flex: 1 1 50%;
            min-width: 300px;
            padding: 10px;
            position: relative;
            align-self: stretch;
            overflow: hidden;
        }
        
        .choose-image img {
            width: 100%;
            height: 90%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .choose-image:hover img {
            transform: scale(1.05);
        }
        
        .choose-text {
            flex: 1 1 50%;
            min-width: 250px;
            padding: 10px;
            
            text-align:center;
        }
        
        /*.choose-text h2 {
             font-size: 30px;
             font-weight: 700;
             color: #212529;
             margin-top: 20px;
             margin-bottom: 20px;
             position: relative;
             display: block;
             text-align: center;
             width: 100%;
             
        } 
        
        .choose-text h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background: #0062ff;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            
        }*/
        
        .choose-text p {
            font-size: 16px;
            line-height: 1.8;
            color: #444;
            margin-bottom: 25px;
            text-align: justify;
            
        }
        
        .choose-text ul {
            padding-left: 40px;
            margin-bottom: 30px;
            text-align: justify;
        }
        
        .choose-text li {
            margin-bottom: 18px;
            line-height: 1.6;
            color: #444;
            position: relative;
            padding-left: 25px;
        }

        
        /* Responsive Adjustments */
        @media (max-width: 1199px) {
            .choose-text {
                padding: 10px;
            }
        }
        
        @media (max-width: 991px) {
            .choose-text h2 {
                font-size: 26px;
            }
            
            .choose-text p {
                font-size: 15px;
            }
            
            .choose-text li {
                font-size: 15px;
            }
           
        }
        
        @media (max-width: 768px) {
            .choose-container {
                flex-direction: column;
            }
            
            .choose-image {
              padding: 15px 10px;
                min-height: 350px;
                order: 1;
            }
            
            .choose-text {
                order: 2;
                padding: 30px;
            }
            
            .choose-text h2 {
                font-size: 24px;
                width: 100%;
                text-align: center;
            }
            
            .choose-text h2::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
           
        }
        
        @media (max-width: 575px) {
            .choose-text {
                padding: 10px;
            }
            
            .choose-text h2 {
                font-size: 22px;
            }
            
          
            
            .choose-text li {
                font-size: 15px;
                padding-left: 20px;
            }
            
           
        }
/* ------------Why Choose Us---------------- */
        .why-us {
            padding: 30px 0;
            text-align:center;
        }
        
        .why-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .why-feature {
            background: #a9cea2c9;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: var(--transition);
        }
        
        .why-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .why-feature i {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .why-feature h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        .why-feature p {
            font-size: 0.9rem;
            color:var(--gray);
            margin-bottom: 15px;
        }
/* Testimonials */
        .testimonials {
            padding: 30px 0;
            
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .testimonial {
            background: #d0d9d6c9;
            padding: 30px;
            border-radius: 10px;
            position: relative;
            border: 1px solid #eee;
        }
        
        .testimonial:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 60px;
            font-family: 'Playfair Display', serif;
            color: var(--primary);
            opacity: 0.2;
            line-height: 1;
        }
        
        .testimonial p {
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
            z-index: 2;
        }
        
        .client {
            display: flex;
            align-items: center;
        }
        
        .client img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .client-info h4 {
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .client-info p {
            margin: 0;
            font-style: normal;
            font-size: 0.9rem;
            color: var(--gray);
        }

/* Client Logos */
        .client-logos {
          margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        .client-logo {
            background: white;
            border-radius: 12px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #edf2f7;
        }
        
        .client-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: #c3cfe2;
        }
        
        .client-logo img {
            max-width: 100%;
            max-height: 60px;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }
        
        .client-logo:hover img {
            filter: grayscale(0%);
        }
        
        .logo-1 { background-color: #e3f2fd; }
        .logo-2 { background-color: #e8f5e9; }
        .logo-3 { background-color: #fff3e0; }
        .logo-4 { background-color: #fbe9e7; }
        .logo-5 { background-color: #f3e5f5; }
        .logo-6 { background-color: #e0f7fa; }
        
        .divider {
            width: 1px;
            background: linear-gradient(to bottom, transparent, #c3cfe2, transparent);
            margin: 0 20px;
        }
        
        @media (max-width: 768px) {
            .content {
                flex-direction: column;
            }
            
            .divider {
                width: 100%;
                height: 1px;
                margin: 20px 0;
            }
            
            .client-logos {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        




        
        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(rgb(180 222 196 / 80%), rgba(101, 113, 106, 0.4)), url('image/ready.jpg') center/cover no-repeat;
            text-align: center;
            color: black;
        }
        
        .cta h2 {
            color: black;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        .btn-secondary {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        .btn-secondary:hover {
            background: #004494;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
        }
        










/*------------------------------------------
            About Page                      
-------------------------------------------*/
.about-hero {
            position: relative;
            width: 100%;
            height: 400px;
            background: url('image/hero.jpg') center/cover no-repeat;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            overflow: hidden;
            margin-top:40px;
        }
        
        /* Dark overlay for better text readability */
        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }
        
        .about-hero-text {
            position: relative;
            z-index: 2;
            color: white;
            padding: 20px;
            font-size: clamp(2.5rem, 10vw, 4.5rem); /* Better responsive scaling */
            font-weight: bold;
            text-align: center;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .about-hero {
                height: 70vh;
                min-height: 300px;
                background-position: 70% center;
            }
            
            .about-hero-text {
                
                padding: 15px;
                margin-top: 40px;
            }
        }
/*------------------------------------------
          About CEO Section             
--------------------------------------------*/
.valuation-about-section {
  padding: 40px 0;
}

.valuation-image-wrapper {
  position: relative;
}

/*.certification-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
}*/

.about-section-title {
  
  color: #2c3e50;
  margin-bottom: 20px;
}
.about-section-title h2 {
  font-size: 2rem;
  padding: 20px 15px;
  line-height: 1px;
  margin-bottom: 15px;
  letter-spacing: 0.8px;
  color: #001ab3;
  position: relative;
  text-align:center;
}

.about-section-title h2::after {
          content: '';
          position: absolute;
          bottom: -20px;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 4px;
          background: var(--secondary);
          margin-bottom:15px;
        }

  @media (min-width: 768px) {
    .about-section-title h2 {
        font-size: 2rem;
        padding: 20px;
        line-height: 1px;
        margin-bottom: 15px;
        letter-spacing: 1.5px;
    }
}
.credentials .badge {
  font-size: 14px;
  padding: 8px 12px;
  margin-right: 8px;
  border-radius: 4px;
}

.intro-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

.service-heading {
  
  color: #2c3e50;
  margin-bottom: 15px;
}
.service-content {
  text-align:justify;
  margin-right:10px;
}

.service-list {
  list-style: none;
  padding-left: 0;
}

.service-list li {
  margin-bottom: 12px;
  font-size: 16px;
}

.service-list i {
  color: #0066cc;
  margin-right: 10px;
  width: 20px;
}

.key-features {
  background: #a3ced082;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-right:10px;
}

.feature-item {
  margin-bottom: 10px;
  font-size: 16px;
}

.feature-item i {
  color: #28a745;
  margin-right: 10px;
}

.a-cta-buttons .btn {
  padding: 12px 25px;
}

@media (max-width: 768px) {
  .valuation-about-section {
    padding: 50px 0;
  }
  
  .service-list li {
    font-size: 15px;
  }
}

/*--- Section Titles - Vision & Mission----*/
    /*.about-section-title {
      
      margin-bottom: 4rem;
      position: relative;
      font-family: 'Playfair Display', serif;
    }
    
    .about-section-title h2 {
      text-align:center;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 1rem;
    }
    
    .about-section-title h2::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 4px;
      background: var(--primary);
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }
    */
    /* Content Cards */
    .about-content-card {
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 1rem 3rem rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      height: 100%;
      background: white;
      padding:10px;
    }
    .service-hero-text
    .about-content-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 1.5rem 4rem rgba(0,0,0,0.15);
    }
    
    .about-content-img {
      border-radius: 1rem;
      height: 450px;
      width: 100%;
      object-fit: cover;
    }
    
    .about-card-content {
      font-size:17px;
      padding: 2rem;
      text-align:justify;
    }
    
    /* Values Section */
    .about-values-section {
      
      padding: 6rem 0;
    }
    
    .about-value-item {
      text-align: center;
      padding: 2rem;
    }
    
    .about-value-icon {
      width: 80px;
      height: 80px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: white;
      font-size: 2rem;
    }









/*--------------------------------------------
            Service Page                     
--------------------------------------------*/
.service-hero {
            position: relative;
            width: 100%;
            height: 400px;
            background: url('image/hero.jpg') center/cover no-repeat;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            overflow: hidden;
            margin-top:40px;
        }
        
        /* Dark overlay for better text readability */
        .service-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }
        
        .service-hero-text {
            position: relative;
            z-index: 2;
            color: white;
            padding: 20px;
            font-size: clamp(2.5rem, 10vw, 4.5rem); /* Better responsive scaling */
            font-weight: bold;
            text-align: center;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .service-hero {
                height: 70vh;
                min-height: 300px;
                background-position: 75% center;
            }
            
            .service-hero-text {
                
                padding: 15px;
                margin-top: 40px;
            }
        }
/*------------- Service Section---------------*/
.services-section {
            padding: 30px 0;
        }
        
        
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: #495057;
        }
        
        .service-container {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            margin-bottom: 80px;
            display: flex;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }
        
        .service-container.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-text {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            position: relative;
        }
        
        .service-image {
            flex: 1;
            min-width: 300px;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: flex-end;
            padding: 30px;
        }
        
        .service-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            text-align:center;
        }
        
        .service-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 40%;
            width: 60px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .service-content p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
          
        .key-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }
        
        .feature-card {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            flex: 1;
            min-width: 200px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
            border-left: 3px solid var(--primary);
        }
        
        .feature-card h4 {
            color: var(--primary);
            margin-bottom: 8px;
        }
        
       
        
        .image-overlay {
            background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, transparent 90%);
            width: 100%;
            padding: 20px;
            color: white;
        }
        
        .image-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .image-features {
            list-style: none;
        }
        
        .image-features li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }
        
        .image-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent);
            font-weight: bold;
        }
        
 @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);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @media (max-width: 768px) {
            .service-container {
                flex-direction: column;
            }
            
            .service-image {
                min-height: 300px;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .header-btns {
                flex-direction: column;
                align-items: center;
            }
        }







/*-------- Services Section - Front Page -------*/
        .services {
            padding: 50px 0;
            background-color: white;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .section-header h2 {
            font-size: 2rem;
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
            font-weight:400px;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        
        .section-header p {
            max-width: 700px;
            margin: 20px auto 0;
            color: var(--gray);
            font-size: 1.1rem;
        }
        
        .front-section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .front-section-title::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .front-service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            z-index: 1;
        }
        
        .front-service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) , var(--secondary));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }
        
        .front-service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .front-service-card:hover::before {
            opacity: 1;
        }
        
        .front-service-card:hover .front-service-icon {
            background: white;
            color: var(--secondary);
            transform: rotateY(360deg);
        }
        
        .front-service-card:hover .front-card-title {
            color: white;
        }
        
        .front-service-card:hover .front-card-text {
            color: rgba(255,255,255,0.9);
        }
        
        .front-service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem auto;
            color: white;
            font-size: 2rem;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .front-card-body {
            padding: 1.5rem 2rem 2.5rem;
            text-align: center;
        }
        
        .front-card-title {
            font-weight: 700;
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }
        
        .front-card-text {
            color: #7f8c8d;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }
        
        .animated-item {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .animated-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
       /* .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid #eee;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .service-icon i {
            font-size: 48px;
            color: white;
        }
        
        .service-content {
            padding: 25px;
            text-align:justify;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .service-content p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        .service-btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        
        .service-btn:hover {
            background: #004494;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
        }*/

/* Service - Process Section */
        .service-process {
            padding: 30px 0;
            /*background: lightslategray;*/
            color: black;
        }
        .section-header1 {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .section-header1 h2 {
            font-size: 2rem;
            position: relative;
            display: inline-block;
            margin-bottom: 30px;
            font-weight:400px;
        }
        
        .section-header1 h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            
        }
        .section-header1 h4 {
           text-align: left;
        }


        .section-header1 p {
            max-width: 700px;
            margin: 20px auto 0;
            color: var(--gray);
            font-size: 1.1rem;
            text-align: left;
        }
        
        
        .service-process .service-section-header h2 {
            
            text-align:center;
          
        }
        
        .service-process .service-section-header p {
            color: black;
            text-align:center;
        }
        
        .service-process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 50px;
            position: relative;
        }
        
        .service-process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 70%;
            height: 3px;
            background: rgba(31, 28, 28, 0.3);
        }
        
        .service-step {
            width: 180px;
            text-align: center;
            margin: 0 15px 40px;
            position: relative;
            z-index: 2;
        }
        
        .service-step-number {
            width: 80px;
            height: 80px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
            margin: 0 auto 20px;
            color: black;
        }
        
        .service-step h3 {
            color: #2a75b3;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .service-step p {
            color: var(--gray);
        }
        
/*------------------------------------------
            Contact Page                      
-------------------------------------------*/
.contact-hero {
            position: relative;
            width: 100%;
            height: 70vh;
            min-height: 300px;
            max-height: 500px; 
            /*height: 400px;*/
            background: url('image/contact.png') center/cover no-repeat;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            overflow: hidden;
            margin-top:40px;
            background-attachment: local;
        }
        
        /* Dark overlay for better text readability */
        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }
        
        .contact-hero-text {
            position: relative;
            z-index: 2;
            color: white;
            padding: 20px;
            font-size: clamp(2.5rem, 10vw, 4.5rem); 
            font-weight: bold;
            text-align: center;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            line-height: 1.2; 
        }
        
        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .contact-hero {
                height: 60vh;
                min-height: 250px;
                margin-top: 30px; 
                background-position: 75% center;
            }
            
            .contact-hero-text {
               
                padding: 15px;
                margin-top: 40px;
                 width: 95%;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
    .contact-hero {
        height: 50vh;
    }
    .contact-hero-text {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
}

 
        .contact-main-container {
            color: black;
            max-width: 80%;
            width: 100%;
            margin: 0 auto;
            padding-top: 40px; /* Space for header */

        }
        .contact-container {
            
            color: #333;
            text-align: center;
            margin-bottom: 40px;
            position:relative;
        }
        
        .contact-container h1 {
            font-size: 2.8rem;  
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .contact-container h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        
        .contact-subtitle {
            font-size: 1.2rem;
            color:rgb(80, 81, 83);
            max-width: 700px;
            margin: 25px auto 0;
            line-height: 1.6;
        }
        
        .contact-wrapper {
            display: flex;
            /*flex-wrap: wrap;*/
            flex-direction: column;
            gap: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
           
            padding: 20px;
        }
        
        /* New Flex-based Contact Info Section */
        .contact-info {
            flex: 1;
            min-width: 100%;
            display: flex;
            flex-direction: column;
            gap: 25px;
            border: 1px solid #e0e7f0;;    
            border-radius: 10px;
        }
        
        .contact-info-card {
            display: flex;
            align-items: flex-start;
            /*flex: 1 1 280px;*/
            flex: 1 1 100%;
            gap: 15px;
            padding: 20px;
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #e0e7f0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }
        
        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(42, 117, 179, 0.15);
            border-color: #2a75b3;
        }
        
        .contact-icon-container {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2a75b3 0%, #1a3a6d 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }
        
        .contact-icon-container i {
            font-size: 20px;
            color: white;
        }
        
        .contact-card-content {
            flex: 1 1 0;
            min-width: 0; 
            text-align:left;
        }
        
        .contact-card-content h3 {
            color: #1a3a6d;
            font-size: 1.3rem;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .contact-card-content p {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 8px;
        }
        
        .contact-card-content a {
            color: #2a75b3;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin-top: 5px;
        }
        
        .contact-card-content a:hover {
            color: #1a3a6d;
            text-decoration: underline;
        }
        
        .contact-service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }
        
        .contact-service-tag {
            background: #e6f0fa;
            color: #2a75b3;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .contact-form {
            flex: 1;
            min-width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            border-radius: 12px;
            border: 1px solid #e0e7f0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }
        
        .contact-form-title {
            color: #1a3a6d;
            font-size: 1.5rem;
            margin-bottom: 15px;
            text-align: center;
            font-weight: 600;
        }   
        
        .form-group {
            margin-bottom: 20px;
            text-align:left;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            color: #1a3a6d;
            font-weight: 500;
        }
        
        input, textarea, select {
            width: 100%;
            padding: 14px;
            border: 1px solid #d1d9e6;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2a75b3;
            box-shadow: 0 0 0 3px rgba(42, 117, 179, 0.2);
        }
        
        textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .contact-btn {
            background: linear-gradient(135deg, #2a75b3 0%,rgb(48, 86, 147) 100%);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            width: 100%;
            display: block;
        }
        
        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(42, 117, 179, 0.4);
        }
        
        .required {
            color: #e53e3e;
        }
        
        .confirmation {
            display: none;
            background: #e6fffa;
            color: #2f855a;
            padding: 16px;
            border-radius: 8px;
            margin-top: 20px;
            text-align: center;
            border: 1px solid #c6f6d5;
        }
        
      /* Tablet */
@media (min-width: 768px) {
  .contact-wrapper {
    flex-direction: row;
    gap: 30px;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  .contact-info, .contact-form {
    min-width: 250px;
    padding: 20px;
  }
   .contact-info-card {
    flex: 0 1 80%;
  }
   .contact-icon-container {
            width: 30px;
            height: 30px;
}
.contact-card-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .contact-form-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    input, textarea, select {
        padding: 14px;
    }

    textarea {
        min-height: 130px;
    }

    .contact-btn {
        padding: 15px 30px;
    }
}



/* Desktop */
@media (min-width: 1025px) {
  .contact-main-container {
    padding-top: 30px;
  }
  .contact-wrapper {
   
     padding: 40px;
  }
  .contact-icon-container {
     width: 40px;
     height: 40px;
}
}






















        
