*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
}


#first{
    position: relative;
}







.btn {
    display: flex;
    align-items: center;
    width: fit-content;
    position: relative;
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    border: 3px solid #80b3f2;
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    cursor: pointer;
    overflow: hidden; 
    transition: 0.4s ease-out, box-shadow 0.3s ease; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    outline: none; 
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #032c4b; 
    transform: translateX(-100%); 
    transition: transform 0.7s ease-out; 
    z-index: -1; 
}

.btn:hover {
    color: #fff;
    border-color: #80b3f2; 
    background: transparent;
    box-shadow: 0 6px 20px #80b3f2;
}

.btn:hover:before {
    transform: translateX(0);
}

.btn i {
    padding-left: 1rem;
}

.btn a {
    text-decoration: none;
}

/* Responsive for mobile */
@media (max-width: 480px) {
    .btn {
        padding: 0.6rem 1.2rem; /* smaller padding */
        font-size: 0.9rem;       /* slightly smaller font */
        border-width: 2px;       /* thinner border for mobile */
    }

    .btn i {
        padding-left: 0.5rem;    /* adjust icon spacing */
    }
}














/* Scroll to top button */
        #scrollTopBtn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #032c4b;
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 28px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        
        #scrollTopBtn.show {
            opacity: 1;
            visibility: visible;
        }

        #scrollTopBtn:hover {
            background: #16507b;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
        }

        #scrollTopBtn:active {
            transform: translateY(-1px);
        }











/* MAIN WAVE STYLE ON BOTTOM */

.editorial {
  display: block;
  width: 100%;
  height: 60px;
  max-height: 60px;
  margin: 0;
  z-index:5;
  bottom:0;
  position:absolute;
  left:0px;
  float:left;
  z-index: 3;
}

.parallax1 > use {
  animation: move-forever1 10s linear infinite;
  &:nth-child(1) {
    animation-delay: -2s;
  }
}
.parallax2 > use {
  animation: move-forever2 8s linear infinite;
  &:nth-child(1) {
    animation-delay: -2s;
  }
}
.parallax3 > use {
  animation: move-forever3 6s linear infinite;
  &:nth-child(1) {
    animation-delay: -2s;
  }
}
.parallax4 > use {
  animation: move-forever4 4s linear infinite;
  &:nth-child(1) {
    animation-delay: -2s;
  }
}
@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(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever4 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@media (max-width: 786px) {
  .editorial {
    height: 30px;
    max-height: 40px;
  }
  
}

@media (max-width: 425px) {
  .editorial {
    height: 20px;
    max-height: 40px;
  }
  
}



























 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

        

       

        /* --- Hero Section Styling --- */
        .hero {
            position: relative;
            width: 100%;
            min-height: 85vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            /* Subtle grid background */
            background-color: #ffffff;
            background-image: 
                linear-gradient(rgba(221, 221, 221, 0.3) 1px, transparent 1px),
                linear-gradient(90deg, rgba(221, 221, 221, 0.3) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            z-index: 2; /* Ensures content is above the background image container */
        }

        .hero-top-text {
            padding-bottom: 1rem;
            color: #032c4b;
            font-size: 1.4rem;
            position: relative;
            display: inline-block;
        }
        
        /* Dashed lines around the top text */
        .hero-top-text::before,
        .hero-top-text::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 50px;
            height: 1px;
            background: linear-gradient(to right, #ccc 50%, transparent 50%);
            background-size: 6px 1px;
        }

        .hero-top-text::before {
            left: -60px;
        }

        .hero-top-text::after {
            right: -60px;
        }


        .hero-heading1 {
            font-size: 3.5rem;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: #032c4b;
      
	-webkit-animation: tracking-in-expand 3s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-expand 3s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}


@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

        .hero-heading {
            font-size: 3.8rem;
            font-weight: 600;
            line-height: 1.7;
            color: #fbfdff;
        }

        .hero-heading .highlight {
            font-size: 3.7rem;
            color: #0052a3;
            display: block; /* Makes "Shaping your vision" and "With precision" stack */
        }
        .highlight1{
            
  text-shadow: 2px 2px 5px #ffffff;
        }
        .hero-subheading {
            max-width: 700px;
            margin: 1rem auto 1.5rem;
            color: #fcfcfc;
            font-size:1rem;
            line-height: 1.4;
        }

        .hero-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .btn {
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .btn-primary {
            z-index: 5;
            background-color:#fff;
            color: #000000;
        }

        .btn-secondary {
            z-index: 5;
            background-color:#fff;
            color: #000000;
        }
        
        /* --- Background Image with Custom Shape --- */
        .hero-background-shape {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: url('/assets/main1.png') center center/cover no-repeat;
            z-index: 1;
            /* The custom V-shape at the top */
            clip-path: polygon(0 15%, 50% 0, 100% 15%, 100% 100%, 0% 100%);
        }
        
        /* Yellow overlay effect on the background image */
        .hero-background-shape::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000;
            opacity: 0.7;
            mix-blend-mode: multiply; /* This creates the color blend effect */
        }
        
        /* --- Responsive Design (Media Queries) --- */
        @media (max-width:1024px) {
             .hero {
                min-height: 80vh;
                padding: 30px 15px 70px;
            }

        }
        /* For Tablets */
        @media (max-width: 768px) {
            .hero-heading {
                font-size: 2.7rem;
            }

            .hero-background-shape {
                height: 50%;
                /* Adjust clip-path for a less dramatic V-shape on smaller screens */
                clip-path: polygon(0 10%, 50% 0, 100% 10%, 100% 100%, 0% 100%);
            }

             .hero-top-text::before,
             .hero-top-text::after {
                display: none; /* Hide decorative lines on smaller screens */
            }
        }

        /* For Mobile Phones */
        @media (max-width: 480px) {
            .hero-heading1 {
                font-size: 2.1rem;
            }
            .hero-heading {
                font-size: 2rem;
            }
            
            .hero-subheading {
                margin: 1rem auto 2rem;
            }

            .hero-cta-buttons {
                flex-direction: column; /* Stack buttons vertically */
                align-items: center;
            }

            .btn {
                width: 80%;
                text-align: center;
            }
            
            .hero-background-shape {
                height: 45%;
                clip-path: polygon(0 8%, 50% 0, 100% 8%, 100% 100%, 0% 100%);
            }
        }












        /* From Uiverse.io by whoisyourdeadie */ 
.containerTimer {
  height: 200px;
  position: absolute;
  top: 10%;
  right: 5%;
  z-index: 7;
  text-align: center;
  display: flex;
  gap: 20px;
}

.nums {
  box-shadow:
    8px 8px 15px rgba(42, 42, 42, 0.2),
    -8px -8px 15px rgba(255, 255, 255, 0.5);
  display: inline-block;
  height: 200px;
  perspective: 1000px;
  position: relative;
  width: 140px;
  border-radius: 20px 20px 20px 20px;
}

.nums:before {
  border-bottom: 1px solid #d2d2d2;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: translate3d(0, -1px, 0);
  top: 50%;
  width: 100%;
  z-index: 1000;
}

.nums:after {
  backface-visibility: hidden;
  background: #e0e0e0;
  border-radius: 0 0 20px 20px;
  bottom: 0;
  color: #333;
  content: "0";
  display: block;
  font-size: 145px;
  height: calc(50% - 1px);
  left: 0;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  text-align: center;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.05),
    0 2px 4px rgba(0, 0, 0, 0.08);
  width: 100%;
  z-index: 0;
}

.num {
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  border-radius: 20px;
  font-size: 145px;
  height: 100%;
  left: 0;
  position: absolute;
  transform: rotateX(0);
  transition: 0.6s;
  transform-style: preserve-3d;
  top: 0;
  width: 100%;
}

.num:before,
.num:after {
  backface-visibility: hidden;
  color: #333;
  display: block;
  height: 50%;
  left: 0;
  overflow: hidden;
  position: absolute;
  text-align: center;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.05),
    0 2px 4px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.num:before {
  background: #e0e0e0;
  border-radius: 20px 20px 0 0;
  content: attr(data-num);
  line-height: 1.38;
  top: 0;
  z-index: 1;
}

.num:after {
  background: #e0e0e0;
  border-bottom: 1px solid #d2d2d2;
  border-radius: 0 0 20px 20px;
  content: attr(data-num-next);
  height: calc(50% - 1px);
  line-height: 0;
  top: 0;
  transform: rotateX(180deg);
}
.nums-one .num:nth-of-type(1) {
  animation: num-one 10s infinite ease-in;
  animation-delay: 0s;
  z-index: 10;
}
.nums-one .num:nth-of-type(2) {
  animation: num-one 10s infinite ease-in;
  animation-delay: 1s;
  z-index: 9;
}
.nums-one .num:nth-of-type(3) {
  animation: num-one 10s infinite ease-in;
  animation-delay: 2s;
  z-index: 8;
}
.nums-one .num:nth-of-type(4) {
  animation: num-one 10s infinite ease-in;
  animation-delay: 3s;
  z-index: 7;
}
.nums-one .num:nth-of-type(5) {
  animation: num-one 10s infinite ease-in;
  animation-delay: 4s;
  z-index: 6;
}
.nums-one .num:nth-of-type(6) {
  animation: num-one 10s infinite ease-in;
  animation-delay: 5s;
  z-index: 5;
}
.nums-one .num:nth-of-type(7) {
  animation: num-one 10s infinite ease-in;
  animation-delay: 6s;
  z-index: 4;
}
.nums-one .num:nth-of-type(8) {
  animation: num-one 10s infinite ease-in;
  animation-delay: 7s;
  z-index: 3;
}
.nums-one .num:nth-of-type(9) {
  animation: num-one 10s infinite ease-in;
  animation-delay: 8s;
  z-index: 2;
}
.nums-one .num:nth-of-type(10) {
  animation: num-one 10s infinite ease-in;
  animation-delay: 9s;
  z-index: 1;
}

.nums-ten .num:nth-of-type(1) {
  animation: num-ten 100s infinite ease-in;
  animation-delay: 9s;
  z-index: 10;
}
.nums-ten .num:nth-of-type(2) {
  animation: num-ten 100s infinite ease-in;
  animation-delay: 19s;
  z-index: 9;
}
.nums-ten .num:nth-of-type(3) {
  animation: num-ten 100s infinite ease-in;
  animation-delay: 29s;
  z-index: 8;
}
.nums-ten .num:nth-of-type(4) {
  animation: num-ten 100s infinite ease-in;
  animation-delay: 39s;
  z-index: 7;
}
.nums-ten .num:nth-of-type(5) {
  animation: num-ten 100s infinite ease-in;
  animation-delay: 49s;
  z-index: 6;
}
.nums-ten .num:nth-of-type(6) {
  animation: num-ten 100s infinite ease-in;
  animation-delay: 59s;
  z-index: 5;
}
.nums-ten .num:nth-of-type(7) {
  animation: num-ten 100s infinite ease-in;
  animation-delay: 69s;
  z-index: 4;
}
.nums-ten .num:nth-of-type(8) {
  animation: num-ten 100s infinite ease-in;
  animation-delay: 79s;
  z-index: 3;
}
.nums-ten .num:nth-of-type(9) {
  animation: num-ten 100s infinite ease-in;
  animation-delay: 89s;
  z-index: 2;
}
.nums-ten .num:nth-of-type(10) {
  animation: num-ten 100s infinite ease-in;
  animation-delay: 99s;
  z-index: 1;
}

@keyframes num-one {
  0% {
    transform: rotateX(0);
    z-index: 50;
  }
  10% {
    transform: rotateX(-180deg);
    z-index: 50;
  }
  90% {
    transform: rotateX(-180deg);
    z-index: 1;
  }
  90.0001% {
    transform: rotateX(0);
  }
  100% {
    transform: rotateX(0);
  }
}

@keyframes num-ten {
  0% {
    transform: rotateX(0);
    z-index: 50;
  }
  1% {
    transform: rotateX(-180deg);
    z-index: 50;
  }
  90% {
    transform: rotateX(-180deg);
    z-index: 1;
  }
  90.0001% {
    transform: rotateX(0);
  }
  100% {
    transform: rotateX(0);
  }
}


@media (max-width:786px) {
    .containerTimer {
      display: none;
    }
}









/* hero section  */

.heroD {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    gap: 2rem;
}

.hero-data {
    width: 100%;
   
    order: 1;
}

.hero-data h1 {
    
            font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    padding-bottom: 1rem;
    line-height: 1.2;
}

.hero-data p {
    font-size: 0.95rem;
    width: 100%;
    padding-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
        justify-content: center;
    align-items: center;
    display: flex;
    order: 2;
}

.hero-image img {
    object-fit: cover;
    width: 85%;
    height: auto;
    min-height: 250px;
    max-height: 350px;
    box-shadow: 0 0 10px #0a0a0a;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    border: 3px solid #16507b;
}

.hero-image img:hover {
    transform: scale(1.03);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (max-width:480px) {
    .hero-data{
         display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: 1;
    }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .heroD {
        flex-direction: row;
        padding: 2rem;
        gap: 3rem;
        min-height: 80vh;
    }

    .hero-data {
        width: 50%;
        order: 1;
    }

    .hero-data h1 {
        font-size: 2.5rem;
        letter-spacing: -0.75px;
    }

    .hero-data p {
        font-size: 1rem;
        width: 95%;
    }

    .hero-image {
        width: 50%;
        order: 2;
    }

    .hero-image img {
        height: 100%;
        max-height: 500px;
    }
}

/* Laptop (1024px and up) */
@media (min-width: 1024px) {
    .heroD {
        padding: 3rem;
        gap: 4rem;
    }

    .hero-data h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-data p {
        font-size: 1.1rem;
        width: 90%;
    }

    .hero-image img {
        max-height: 600px;
    }
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .heroD {
        padding: 4rem;
    }

    .hero-data h1 {
        font-size: 2.7rem;
    }

    .hero-data p {
        font-size: 1.15rem;
    }
}

/* 4K Screens (2560px and up) */
@media (min-width: 2560px) {
    .heroD {
        max-width: 2400px;
        padding: 6rem;
        gap: 6rem;
    }

    .hero-data h1 {
        font-size: 4rem;
        padding-bottom: 2rem;
    }

    .hero-data p {
        font-size: 1.5rem;
        padding-bottom: 2rem;
        line-height: 1.8;
    }

    .hero-image img {
        max-height: 800px;
        border-radius: 15px;
        border: 4px solid #16507b;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
}


































/* .journal-section  %%%%   Vision and History*/


.section3 {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100%;
    background-color: #ecebeb;
    padding: 1rem;
    border-radius: 15px;
}



.section3 h1 {
    
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section3 p {
    padding-bottom: 1rem;
    letter-spacing: 0.5px;
    line-height: 1.5;
    font-weight: 450;
    width: 100%;
}

.journal-section {
    padding-top: 2rem;
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.journal1 {
    width: 100%;
    /* max-width: 300px; */
    padding: 1rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journalData{
    padding: 1rem;
    width: 100%;
    max-width: 300px;
    min-height: 60vh;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.journalData:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.journal1:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.journalData:hover .Nimage img{
    transform: scale(1.05);
}

.J-image {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.J-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.journal1:hover .J-image img {
    transform: scale(1.05);
}

.J-data {
    padding-top: 1rem;
    text-align: center;
}

.J-data h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #333;
}

.J-data a {
    text-decoration: none;
    color: #032c4b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.J-data a:hover {
    color: #045a9c;
}

/* Tablet - 768px and up */
@media (min-width: 768px) {
    .section3 {
        padding: 2rem;
    }

    .section3 h1 {
        font-size: 2.25rem;
    }

    

    .journal-section {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        padding-top: 3rem;
    }

    .journal1 {
        width: 100%;
        max-width: 300px;
    }

.journalData{
    width: 40%;
    max-width: 300px;
}
.N
    .J-image {
        height: 280px;
    }

    .J-data h2 {
        font-size: 1.25rem;
    }
}

/* Laptop - 1024px and up */
@media (min-width: 1024px) {
    .section3 {
        padding: 2.5rem;
    }

    .section3 h1 {
        font-size: 2.5rem;
    }

    
    .journal1 {
        width: 40%;
        max-width: 500px;
    }

.journalData{
    width:40%;
    max-width:400px;
}

    .J-image {
        height: 300px;
    }

    .J-data h2 {
        font-size: 1.35rem;
    }
}

/* Large Desktop - 1440px and up */
@media (min-width: 1440px) {
    .section3 {
        padding: 3rem;
    }

    .journal1 {
        width: 40%;
    }

.journalData{
    width: 23%;
}


    .J-image {
        height: 250px;
    }
}

/* 4K - 2560px and up */
@media (min-width: 2560px) {
    .section3 {
        max-width: 2400px;
        padding: 4rem;
    }

    .section3 h1 {
        font-size: 3.5rem;
    }

    .section3 p {
        font-size: 1.25rem;
        line-height: 1.6;
    }

    .journal-section {
        padding-top: 4rem;
        gap: 4rem;
    }

    .journal1 {
        width:50%;
        max-width: 700px;
        padding: 2rem;
    }

.journalData{
    padding: 1rem;
    width: 50%;
    max-width:600px;
}
    .J-image {
        height: 500px;
    }

    .J-data h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .J-data a {
        font-size: 1.15rem;
    }
}






.journal1 h2{
    text-align: center;
}
.bookBtn{
    text-align: center;
    padding-top: 3rem;
}

























.moving-text{
    overflow-x: auto;
    white-space: nowrap;
}
.moving-text::-webkit-scrollbar{
    display: none;
}
.cont{
    text-transform: uppercase;
    animation: moveText 10s linear  infinite ;
 white-space: nowrap;
 display: inline-block;
}
.moving-text h1{
    margin-top: 2.3rem;
    font-size: 3.5rem;
    display: inline-block;
}.gola{
    width: 35px;
    height: 35px;
    background-color: #032c4b;
    border-radius: 50%;
    display: inline-block;
    margin: .2vw 2vw;
}
@keyframes moveText {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

@media (max-width:480px) {
    .moving-text h1{
        font-size: 2.5rem;
        font-weight: 600;
    }
    .gola{
        width: 25px;
        height: 25px;
    }
}


























/* Journals Section Styles */
.journal-main-section {
    max-width: 1400px;
    width: 95%;
    margin:2rem auto;
    padding: 2rem 1.5rem;
}

.journal-main-section .journal-heading {
    text-transform: uppercase;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #032c4b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.journal-main-section .journal-description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: #333;
    margin-bottom: 2.5rem;
    text-align: justify;
}

/* Journal Cards Container */
.journals-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Individual Journal Card */
.journal-card-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.journal-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(22, 80, 123, 0.2);
}

/* Journal Image Container */
.journal-image-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #f5f5f5;
}

.journal-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

.journal-card-item:hover .journal-image-wrapper img {
    transform: scale(1.05);
}

/* Journal Data/Content */
.journal-content-wrapper {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.journal-content-wrapper .journal-title {
    font-size: 1.5rem;
    color: #16507b;
    font-weight: 700;
    margin: 0;
}

.journal-content-wrapper .journal-text {
    margin: 0;
    flex: 1;
}

.journal-content-wrapper .journal-link {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
    display: inline-block;
}

.journal-content-wrapper .journal-link:hover {
    color: #16507b;
    text-decoration: underline;
}

/* View All Button */
.journal-view-all-btn {
    text-align: center;
    margin-top: 2rem;
}



/* Tablet Styles (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .journal-main-section {
        padding: 2rem 1rem;
    }

    .journals-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .journal-image-wrapper {
        height: 380px;
    }

    .journal-content-wrapper {
        padding: 1.25rem;
    }

    .journal-content-wrapper .journal-title {
        font-size: 1.35rem;
    }

    .journal-content-wrapper .journal-link {
        font-size: 0.95rem;
    }
}

/* Mobile Styles (425px - 768px) */
@media screen and (max-width: 768px) {
    .journal-main-section {
        margin: 2rem auto;
        padding: 1.5rem 1rem;
    }

    .journal-main-section .journal-heading {
        margin-bottom: 0.75rem;
    }

    .journal-main-section .journal-description {
        margin-bottom: 2rem;
    }

    .journals-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.25rem;
    }

    .journal-image-wrapper {
        height: 350px;
    }

    .journal-content-wrapper {
        padding: 1rem;
    }

    .journal-content-wrapper .journal-title {
        font-size: 1.25rem;
    }

    .journal-content-wrapper .journal-link {
        font-size: 0.9rem;
    }

    .journal-view-all-btn .journal-btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

/* Small Mobile Styles (320px - 425px) */
@media screen and (max-width: 425px) {
    .journal-main-section {
        width: 100%;
        padding: 1rem 0.75rem;
        margin: 1.5rem auto;
    }

    .journal-main-section .journal-heading {
        text-align: center;
    }

    .journal-main-section .journal-description {
        font-size: 0.9rem;
        text-align: left;
    }

    .journals-grid-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .journal-card-item {
        border-radius: 10px;
    }

    .journal-image-wrapper {
        height: 310px;
    }

    .journal-content-wrapper {
        padding: 1rem;
        gap: 0.5rem;
    }

    .journal-content-wrapper .journal-title {
        font-size: 1.15rem;
    }

    .journal-content-wrapper .journal-link {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .journal-view-all-btn {
        margin-top: 1.5rem;
    }

    .journal-view-all-btn .journal-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Extra Small Mobile (max-width: 320px) */
@media screen and (max-width: 320px) {
    .journal-image-wrapper {
               height: 400px;
    }

    .journal-content-wrapper .journal-title {
        font-size: 1.1rem;
    }

    .journal-content-wrapper .journal-link {
        font-size: 0.8rem;
    }
}










































.search-container {
      text-align: center;
      margin-bottom: 30px;
    }
    .search-container input {
      width: 60%;
      padding: 10px 15px;
      font-size: 16px;
      border-radius: 10px;
      border: 1px solid #ccc;
      outline: none;
      transition: all 0.3s ease;
    }
    .search-container input:focus {
      border-color: #007bff;
      box-shadow: 0 0 5px rgba(0, 123, 255, 0.4);
    }



        .containerBook {
            max-width: 1400px;
            margin: 0 auto;
        }

       .containerBook h1 {
            color: #333;
            margin-bottom: 40px;
            font-size: 2.5rem;
        }
        .book-store-title{
            padding-top: 2rem;
            color: #032c4b;
            font-weight: 700;
            font-size: 3rem;
            margin-bottom: 40px;
        }
        .books-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            padding: 20px;
        }

        .book-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid #e0e0e0;
        }

        .book-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .book-image-containerBook {
            width: 100%;
            height: 250px;
            overflow: hidden;
            background: #f9f9f9;
            position: relative;
        }

        .book-image-containerBook img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .book-details {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .book-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 3.4rem;
        }
        .book-name a{
            text-decoration: none;
            color: inherit;
        }

        .book-author {
            font-size: 0.95rem;
            color: #666;
            font-weight: 500;
            /* Text truncation after 2 lines */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 2.6rem;
        }

        .book-author strong {
            color: #444;
        }

        .book-price {
            font-size: 2rem;
            color: #032c4b;
            font-weight: 700;
            margin: 8px 0;
        }

        .button-group {
            display: flex;
            gap: 12px;
            margin-top: auto;
            padding-top: 10px;
        }

        .btn1 {
            flex: 1;
            padding: 10px 16px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-cart {
            background: white;
            color: #032c4b;
            border: 2px solid #032c4b;
        }

        .btn-cart:hover {
            background: #f0f7ff;
            transform: translateY(-2px);
        }

        .btn-buy {
            background: #034b82;
            color: white;
            border: 2px solid #032c4b;
        }

        .btn-buy:hover {
            background: #0052a3;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
        }

        .btn1:active {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
           .containerBook h1 {
                font-size: 2rem;
            }

            .books-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 20px;
                padding: 10px;
            }

            .book-image-containerBook {
                height: 350px;
            }

            .book-name {
                font-size: 1.1rem;
            }

            .book-price {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .books-grid {
                grid-template-columns: 1fr;
            }

            .button-group {
                flex-direction: column;
            }

            .btn1 {
                width: 100%;
            }
        }

        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #333;
            color: white;
            padding: 16px 24px;
            border-radius: 8px;
            display: none;
            animation: slideIn 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }

        @keyframes slideIn {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }







































/* .publication-section */

 .publication-section {
            position: relative;
            width: 100%;
            background-color: #032c4b;
            background-attachment: fixed;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' viewBox='0 0 192 192'%3E%3Cpath fill='%239C92AC' fill-opacity='0.4' d='M192 15v2a11 11 0 0 0-11 11c0 1.94 1.16 4.75 2.53 6.11l2.36 2.36a6.93 6.93 0 0 1 1.22 7.56l-.43.84a8.08 8.08 0 0 1-6.66 4.13H145v35.02a6.1 6.1 0 0 0 3.03 4.87l.84.43c1.58.79 4 .4 5.24-.85l2.36-2.36a12.04 12.04 0 0 1 7.51-3.11 13 13 0 1 1 .02 26 12 12 0 0 1-7.53-3.11l-2.36-2.36a4.93 4.93 0 0 0-5.24-.85l-.84.43a6.1 6.1 0 0 0-3.03 4.87V143h35.02a8.08 8.08 0 0 1 6.66 4.13l.43.84a6.91 6.91 0 0 1-1.22 7.56l-2.36 2.36A10.06 10.06 0 0 0 181 164a11 11 0 0 0 11 11v2a13 13 0 0 1-13-13 12 12 0 0 1 3.11-7.53l2.36-2.36a4.93 4.93 0 0 0 .85-5.24l-.43-.84a6.1 6.1 0 0 0-4.87-3.03H145v35.02a8.08 8.08 0 0 1-4.13 6.66l-.84.43a6.91 6.91 0 0 1-7.56-1.22l-2.36-2.36A10.06 10.06 0 0 0 124 181a11 11 0 0 0-11 11h-2a13 13 0 0 1 13-13c2.47 0 5.79 1.37 7.53 3.11l2.36 2.36a4.94 4.94 0 0 0 5.24.85l.84-.43a6.1 6.1 0 0 0 3.03-4.87V145h-35.02a8.08 8.08 0 0 1-6.66-4.13l-.43-.84a6.91 6.91 0 0 1 1.22-7.56l2.36-2.36A10.06 10.06 0 0 0 107 124a11 11 0 0 0-22 0c0 1.94 1.16 4.75 2.53 6.11l2.36 2.36a6.93 6.93 0 0 1 1.22 7.56l-.43.84a8.08 8.08 0 0 1-6.66 4.13H49v35.02a6.1 6.1 0 0 0 3.03 4.87l.84.43c1.58.79 4 .4 5.24-.85l2.36-2.36a12.04 12.04 0 0 1 7.51-3.11A13 13 0 0 1 81 192h-2a11 11 0 0 0-11-11c-1.94 0-4.75 1.16-6.11 2.53l-2.36 2.36a6.93 6.93 0 0 1-7.56 1.22l-.84-.43a8.08 8.08 0 0 1-4.13-6.66V145H11.98a6.1 6.1 0 0 0-4.87 3.03l-.43.84c-.79 1.58-.4 4 .85 5.24l2.36 2.36a12.04 12.04 0 0 1 3.11 7.51A13 13 0 0 1 0 177v-2a11 11 0 0 0 11-11c0-1.94-1.16-4.75-2.53-6.11l-2.36-2.36a6.93 6.93 0 0 1-1.22-7.56l.43-.84a8.08 8.08 0 0 1 6.66-4.13H47v-35.02a6.1 6.1 0 0 0-3.03-4.87l-.84-.43c-1.59-.8-4-.4-5.24.85l-2.36 2.36A12 12 0 0 1 28 109a13 13 0 1 1 0-26c2.47 0 5.79 1.37 7.53 3.11l2.36 2.36a4.94 4.94 0 0 0 5.24.85l.84-.43A6.1 6.1 0 0 0 47 84.02V49H11.98a8.08 8.08 0 0 1-6.66-4.13l-.43-.84a6.91 6.91 0 0 1 1.22-7.56l2.36-2.36A10.06 10.06 0 0 0 11 28 11 11 0 0 0 0 17v-2a13 13 0 0 1 13 13c0 2.47-1.37 5.79-3.11 7.53l-2.36 2.36a4.94 4.94 0 0 0-.85 5.24l.43.84A6.1 6.1 0 0 0 11.98 47H47V11.98a8.08 8.08 0 0 1 4.13-6.66l.84-.43a6.91 6.91 0 0 1 7.56 1.22l2.36 2.36A10.06 10.06 0 0 0 68 11 11 11 0 0 0 79 0h2a13 13 0 0 1-13 13 12 12 0 0 1-7.53-3.11l-2.36-2.36a4.93 4.93 0 0 0-5.24-.85l-.84.43A6.1 6.1 0 0 0 49 11.98V47h35.02a8.08 8.08 0 0 1 6.66 4.13l.43.84a6.91 6.91 0 0 1-1.22 7.56l-2.36 2.36A10.06 10.06 0 0 0 85 68a11 11 0 0 0 22 0c0-1.94-1.16-4.75-2.53-6.11l-2.36-2.36a6.93 6.93 0 0 1-1.22-7.56l.43-.84a8.08 8.08 0 0 1 6.66-4.13H143V11.98a6.1 6.1 0 0 0-3.03-4.87l-.84-.43c-1.59-.8-4-.4-5.24.85l-2.36 2.36A12 12 0 0 1 124 13a13 13 0 0 1-13-13h2a11 11 0 0 0 11 11c1.94 0 4.75-1.16 6.11-2.53l2.36-2.36a6.93 6.93 0 0 1 7.56-1.22l.84.43a8.08 8.08 0 0 1 4.13 6.66V47h35.02a6.1 6.1 0 0 0 4.87-3.03l.43-.84c.8-1.59.4-4-.85-5.24l-2.36-2.36A12 12 0 0 1 179 28a13 13 0 0 1 13-13zM84.02 143a6.1 6.1 0 0 0 4.87-3.03l.43-.84c.8-1.59.4-4-.85-5.24l-2.36-2.36A12 12 0 0 1 83 124a13 13 0 1 1 26 0c0 2.47-1.37 5.79-3.11 7.53l-2.36 2.36a4.94 4.94 0 0 0-.85 5.24l.43.84a6.1 6.1 0 0 0 4.87 3.03H143v-35.02a8.08 8.08 0 0 1 4.13-6.66l.84-.43a6.91 6.91 0 0 1 7.56 1.22l2.36 2.36A10.06 10.06 0 0 0 164 107a11 11 0 0 0 0-22c-1.94 0-4.75 1.16-6.11 2.53l-2.36 2.36a6.93 6.93 0 0 1-7.56 1.22l-.84-.43a8.08 8.08 0 0 1-4.13-6.66V49h-35.02a6.1 6.1 0 0 0-4.87 3.03l-.43.84c-.79 1.58-.4 4 .85 5.24l2.36 2.36a12.04 12.04 0 0 1 3.11 7.51A13 13 0 1 1 83 68a12 12 0 0 1 3.11-7.53l2.36-2.36a4.93 4.93 0 0 0 .85-5.24l-.43-.84A6.1 6.1 0 0 0 84.02 49H49v35.02a8.08 8.08 0 0 1-4.13 6.66l-.84.43a6.91 6.91 0 0 1-7.56-1.22l-2.36-2.36A10.06 10.06 0 0 0 28 85a11 11 0 0 0 0 22c1.94 0 4.75-1.16 6.11-2.53l2.36-2.36a6.93 6.93 0 0 1 7.56-1.22l.84.43a8.08 8.08 0 0 1 4.13 6.66V143h35.02z'%3E%3C/path%3E%3C/svg%3E");
            padding: 1rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 2rem;
        }

        .publication-section h1 {
            color: rgb(255, 255, 255);
            
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            margin-bottom: 3rem;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .categories-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            width: 100%;
            padding: 0 1rem;
        }

        .category-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .category-card:hover {
            transform: translateY(-10px);
            opacity: 0.9;
        }

        .icon-wrapper {
            width: 100px;
            height: 100px;
            margin-bottom: 1rem;
            position: relative;
        }

        .icon-wrapper svg {
            width: 60%;
            height: 100%;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.847));
        }

        .category-title {
            color: rgb(171, 171, 171);
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.4;
            max-width: 180px;
        }


        /* Tablet */
        @media (min-width: 768px) {
            .publication-section {
                padding: 5rem 3rem;
            }

            .publication-section h1 {
                font-size: 2.5rem;
                margin-bottom: 4rem;
            }

            .categories-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 3rem;
            }

            .icon-wrapper {
                width: 110px;
                height: 110px;
            }

            .category-title {
                font-size: 1.05rem;
            }
        }

        /* Laptop */
        @media (min-width: 1024px) {
            .publication-section {
                padding: 6rem 4rem;
            }

            .publication-section h1 {
                font-size: 2.75rem;
            }

            .categories-container {
                grid-template-columns: repeat(6, 1fr);
                gap: 2.5rem;
            }

            .icon-wrapper {
                width: 120px;
                height: 120px;
            }

            .category-title {
                font-size: 1.1rem;
            }
        }

        /* Large Desktop */
        @media (min-width: 1440px) {
            .publication-section {
                margin-top: 1rem;
                padding: 7rem 5rem;
            }

            .categories-container {
                gap: 3rem;
            }

            .icon-wrapper {
                width: 130px;
                height: 130px;
            }
        }

        /* 4K */
        @media (min-width: 2560px) {
            .publication-section {
                padding: 10rem 8rem;
            }

            .publication-section h1 {
                font-size: 4rem;
                margin-bottom: 6rem;
            }

            .categories-container {
                max-width: 2400px;
                gap: 5rem;
            }

            .icon-wrapper {
                width: 180px;
                height: 180px;
            }

            .category-title {
                font-size: 1.5rem;
                max-width: 250px;
            }
        }





















/* contact section  */

/* Base Styles (Mobile First: 0px to 374px) */
/* यह सभी डिवाइसों के लिए डिफ़ॉल्ट स्टाइल है, जो सबसे छोटे मोबाइल स्क्रीन को टारगेट करता है। */

.contact-section {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 1rem 0.75rem;
    background-color: #f0f0f0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.contact-info h1 {
    font-size: 1.5rem;
    color: #16507b;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.intro-text {
    color: #5a6c7d;
    line-height: 1.5;
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr; /* Default: 1 column */
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.contact-method {
    margin-bottom: 0.25rem;
}

.contact-method h3 {
    font-size: 1.1rem;
    color: #16507b;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.contact-method p {
    color: #5a6c7d;
    font-size: 0.85rem;
    line-height: 1.4;
}

.contact-method a {
    color: #16507b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    word-break: break-word;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #d4e7f0 0%, #c8dfe9 100%);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr; /* Default: 1 column */
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    color: #16507b;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8fa3b3;
    font-size: 0.875rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.9);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #3b8ba5 0%, #2d7089 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 0.75rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 139, 165, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}


/* --- Media Queries --- */

/* Small Mobile (375px+) */
@media (min-width: 375px) {
    .contact-section {
        padding: 1.25rem 0.875rem;
    }
    .contact-info h1 {
        font-size: 1.65rem;
        margin-bottom: 0.875rem;
    }
    .intro-text {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    .contact-methods {
        gap: 1.4rem;
        margin-top: 1.75rem;
    }
    .contact-method h3 {
        font-size: 1.2rem;
        margin-bottom: 0.35rem;
    }
    .contact-method p,
    .contact-method a {
        font-size: 0.9rem;
    }
    .contact-form-wrapper {
        padding: 1.75rem;
    }
    .form-group input,
    .form-group textarea {
        padding: 0.95rem 1.125rem;
        font-size: 0.9rem;
    }
    .form-group textarea {
        min-height: 130px;
    }
    .submit-btn {
        padding: 0.95rem 1.75rem;
        font-size: 0.975rem;
    }
}

/* Mobile Large (481px+) */
@media (min-width: 481px) {
    .contact-section {
        padding: 2rem 1.5rem;
    }
    .contact-info h1 {
        font-size: 2rem;
    }
    .intro-text {
        font-size: 0.95rem;
    }
    .contact-methods {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for contact methods */
        gap: 1.75rem;
    }
    .contact-method h3 {
        font-size: 1.35rem;
    }
    .form-group textarea {
        min-height: 150px;
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .contact-section {
        padding: 3rem 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr 1fr; /* Main layout: Info on left, Form on right */
        gap: 3rem;
    }

    .contact-info h1 {
        font-size: 2.25rem;
    }

    .contact-methods {
        grid-template-columns: 1fr; /* Contact methods go back to 1 column to use height efficiently */
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .contact-method h3 {
        font-size: 1.5rem;
    }

    .contact-method p {
        font-size: 0.95rem;
    }

    .form-row {
        grid-template-columns: 1fr 1fr; /* Name and Last Name fields in 2 columns */
    }
    
    .contact-form-wrapper {
        padding: 2.5rem;
    }

    .form-group textarea {
        min-height: 160px;
    }
}

/* Laptop (1024px+) */
@media (min-width: 1024px) {
    .contact-section {
        padding: 4rem 3rem;
    }

    .contact-container {
        gap: 4rem;
    }

    .contact-info h1 {
        font-size: 2.75rem;
    }

    .intro-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .contact-methods {
        grid-template-columns: 1fr 1fr; /* Enough space now, switch back to 2 columns */
        gap: 2.5rem;
        margin-top: 3rem;
    }

    .contact-method h3 {
        font-size: 1.65rem;
    }

    .contact-method p {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 3rem;
    }

    .form-group textarea {
        min-height: 170px;
    }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .contact-section {
        padding: 3rem 4rem; 
    }

    .contact-container {
        gap: 5rem;
    }

    .contact-info h1 {
        font-size: 3rem;
    }

    .contact-method h3 {
        font-size: 1.75rem;
    }

    .contact-form-wrapper {
        padding: 4rem;
    }

    .form-group textarea {
        min-height: 180px;
    }
}

/* 4K (2560px+) */
@media (min-width: 2560px) {
    .contact-section {
        max-width: 2400px;
        padding: 8rem 6rem;
    }

    .contact-container {
        gap: 6rem;
    }

    .contact-info h1 {
        font-size: 4.5rem;
        margin-bottom: 2rem;
    }

    .intro-text {
        font-size: 1.35rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .contact-methods {
        margin-top: 4rem;
        gap: 3.5rem;
    }

    .contact-method h3 {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .contact-method p {
        font-size: 1.35rem;
        line-height: 1.6;
    }

    .contact-form-wrapper {
        padding: 5rem;
        border-radius: 30px;
    }

    .form-row {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1.5rem 2rem;
        font-size: 1.25rem;
        border-radius: 18px;
    }

    .form-group textarea {
        min-height: 280px;
    }

    .submit-btn {
        padding: 1.5rem 3rem;
        font-size: 1.35rem;
        margin-top: 1.5rem;
    }
}







































        
        .stats-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto 4rem auto;
            background: white;
            border-radius: 15px;
            padding: 60px 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #3b82f6;
            font-weight: 500;
            text-transform: capitalize;
        }

        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .stat-number {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 640px) {
            .stats-container {
                padding: 40px 20px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .stat-number {
                font-size: 3rem;
            }

            .stat-label {
                font-size: 1rem;
            }
        }
        
        
        
        
        
        
        
        
        
        
        
        