@charset "utf-8";
/* CSS Document */

body {
      margin: 0;
    }

    /* Top bar */
    .top-bar {
      background-color: yellow;
      color: #002e6d;
      font-size: 0.9rem;
      padding: 6px 20px;
	  font-size:15px;
    }

    .top-bar a {
      color: #002e6d;
      margin-left: 15px;
      text-decoration: none;
    }

    .top-bar a:hover {
      color: #000;
    }

    /* Main navbar */
    .navbar {
      background-color: #002e6d;
    }

    .navbar-nav .nav-link {
      color: white;
      padding: 0.5rem 1rem;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
      color: yellow;
    }

    .phone-btn {
      background-color: yellow;
      color: #002e6d;
      border-radius: 30px;
      font-weight: bold;
      padding: 6px 15px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .phone-btn:hover {
      background-color: #ffd700;
    }

    .carousel-item {
      height:650px;
      overflow: hidden;
      position: relative;
    }

    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.5s ease, filter 1.5s ease;
      filter: blur(3px);
    }

    .carousel-item.active img {
      transform: scale(1.1);
      filter: blur(0);
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      padding: 15px;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 6%;
    }

    @media (max-width: 768px) {
      .carousel-item {
        height: 300px;
      }
    }

    body {
      font-family: 'Open Sans', sans-serif;
    }

    .content-section { 
      background-color: #f9f9f9;
      padding:30px 15px;
    }

    .content-heading {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: #002f6c;
      font-weight: 600;
      text-align: center;
      margin-bottom: 10px;
    }

    .heading-underline-stylish {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 30px;
    }

    .heading-underline-stylish::before,
    .heading-underline-stylish::after {
      content: '';
      flex: 1;
      height: 2px;
      background: #ccc;
      max-width: 100px;
    }

    .heading-underline-stylish span {
      display: inline-block;
      width: 50px;
      height: 4px;
      background-color: #ffd700;
      margin: 0 15px;
      border-radius: 5px;
    }

    .content-text {
      font-size: 1.125rem;
      color: #333;
      line-height: 1.8;
      max-width:1200px;
      margin: 0 auto 40px auto;
      text-align: justify;
    }

    .content-card {
      background-color: #ffffff;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
      max-width: 850px;
      margin: 0 auto;
    }

    .content-card h4 {
      color: #002f6c;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .content-card p {
      margin-bottom: 0;
      font-size: 1rem;
      line-height: 1.7;
      color: #444;
    }

    .service-box {
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      transition: all 0.4s ease;
      background: #f8f9fa;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .service-box:hover {
      transform: translateY(-10px);
      background: linear-gradient(135deg, #007bff, #00c6ff);
      color: white;
    }

    .service-icon {
      font-size: 40px;
      margin-bottom: 20px;
      color: #007bff;
      transition: color 0.4s ease;
    }


    .service-box:hover .service-icon {
      color: #fff;
    }

    .service-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .service-description {
      font-size: 16px;
    }

    .gallery-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.3s ease, filter 0.3s ease;
      border-radius: 10px;
      cursor: pointer;
    }

    .gallery-img:hover {
      transform: scale(1.05);
      filter: brightness(80%);
    }

    .modal-img {
      width: 100%;
      border-radius: 10px;
    }

    .modal-controls {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 30px;
    }

    .modal-controls button {
      background: rgba(0, 0, 0, 0.5);
      border: none;
      color: #fff;
      font-size: 24px;
      padding: 10px 15px;
      border-radius: 50%;
      transition: 0.3s ease;
    }

    .modal-controls button:hover {
      background: rgba(0, 0, 0, 0.8);
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      font-size: 28px;
      border: none;
      border-radius: 50%;
      padding: 6px 12px;
      z-index: 10;
    }

    .close-btn:hover {
      background: rgba(0, 0, 0, 0.9);
    }

    .section-container {
      padding: 60px 0;
    }

    .embed-box {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .embed-box:hover {
      transform: scale(1.02);
    }

    .section-title {
      text-align: center;
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 40px;
      color: #007bff;
      position: relative;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #007bff;
      border-radius: 2px;
    }

    footer {
      background-color: #1c1c1c;
      color: #fff;
      padding: 50px 0 20px;
      position: relative;
    }

    footer a {
      color: #bbb;
      text-decoration: none;
      transition: color 0.3s;
    }

    footer a:hover {
      color: #00bfff;
    }

    .footer-title {
      font-size: 20px;
      margin-bottom: 20px;
      font-weight: 600;
      color: #fff;
    }

    .social-icons a {
      font-size: 20px;
      margin-right: 15px;
      display: inline-block;
      color: #bbb;
    }

    .social-icons a:hover {
      color: #00bfff;
    }

    .back-to-top {
      position: absolute;
      right: 20px;
      bottom: 20px;
      background-color: #00bfff;
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      font-size: 20px;
      line-height: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: background 0.3s;
    }

    .back-to-top:hover {
      background-color: #0099cc;
    }
	.cgs {color:#FFFFFF; text-decoration:none;}
	.cgs a{color:#FFFFFF; text-decoration:none;}
		.cgs a:hover{color:#00bfff; text-decoration:none;}

    .photo-circle {
      width:400px;
      height:400px;
      border-radius: 50%;
      overflow: hidden;
      position: relative;
      margin: auto;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .photo-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .photo-circle::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 123, 255, 0.25); /* Blue overlay */
      mix-blend-mode: multiply;
      transition: background 0.4s ease;
    }

    .photo-circle:hover {
      transform: scale(1.07);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .photo-circle:hover::after {
      background: rgba(255, 193, 7, 0.35); /* Yellow overlay on hover */
    }

    .photo-section {
      background-color: #f8f9fa;
      padding: 60px 0;
      text-align: center;
    }

    .photo-caption {
      margin-top: 25px;
      font-size: 1.25rem;
      font-weight: 600;
    }
	#more {display: none;}
	.cgs1 {color: #000;}
	.cgs1 a{color: #000; text-decoration:none;}
	.cgs1 a:hover{color: #000066; text-decoration:none;}
	